* [PATCH] native: fix incorrect addition of -native suffix
@ 2015-12-31 17:03 Ed Bartosh
0 siblings, 0 replies; only message in thread
From: Ed Bartosh @ 2015-12-31 17:03 UTC (permalink / raw)
To: openembedded-core
The code in native.bbclass adds -native suffix for recipes that
don't have it. If native package doesn't have this suffix it
will be added to it. For example perl-native-runtime becomes
perl-native-runtime-native because of this.
Added check to -native- in the recipe name to prevent addition
of -native suffix.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
meta/classes/native.bbclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index aac2c1e..8bb3244 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -120,7 +120,7 @@ python native_virtclass_handler () {
return
pn = e.data.getVar("PN", True)
- if not pn.endswith("-native"):
+ if not (pn.endswith("-native") or "-native-" in pn):
return
def map_dependencies(varname, d, suffix = ""):
@@ -136,7 +136,7 @@ python native_virtclass_handler () {
continue
elif "-cross-" in dep:
newdeps.append(dep.replace("-cross", "-native"))
- elif not dep.endswith("-native"):
+ elif not (dep.endswith("-native") or "-native-" in dep):
newdeps.append(dep + "-native")
else:
newdeps.append(dep)
--
2.1.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-12-31 19:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-31 17:03 [PATCH] native: fix incorrect addition of -native suffix Ed Bartosh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox