* [PATCH] package: Don't remap names in packagegroup recipes
@ 2014-08-19 12:41 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2014-08-19 12:41 UTC (permalink / raw)
To: openembedded-core
For package groups, use the original package names and don't use the
remapped (e.g. debian) naming.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 88793fa..154647d 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -374,6 +374,9 @@ def get_package_additional_metadata (pkg_type, d):
def runtime_mapping_rename (varname, pkg, d):
#bb.note("%s before: %s" % (varname, d.getVar(varname, True)))
+ if bb.data.inherits_class('packagegroup', d):
+ return
+
new_depends = {}
deps = bb.utils.explode_dep_versions2(d.getVar(varname, True) or "")
for depend in deps:
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-08-19 12:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-19 12:41 [PATCH] package: Don't remap names in packagegroup recipes Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox