[OE-core] [PATCH] packagedata.py: Fix get_subpkgedata_fn for multilib

Matthew McClintock msm at freescale.com
Thu Mar 8 21:01:32 UTC 2012


Signed-off-by: Matthew McClintock <msm at freescale.com>
---
 meta/lib/oe/packagedata.py |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/meta/lib/oe/packagedata.py b/meta/lib/oe/packagedata.py
index a7a40f0..124a49d 100644
--- a/meta/lib/oe/packagedata.py
+++ b/meta/lib/oe/packagedata.py
@@ -27,6 +27,13 @@ def read_pkgdatafile(fn):
 
 def get_subpkgedata_fn(pkg, d):
     archs = d.expand("${PACKAGE_ARCHS}").split(" ")
+    mlarchs = d.expand("${MULTILIB_PACKAGE_ARCHS}", d).split(" ")
+
+    for mlarch in mlarchs:
+        if "_" in mlarch:
+            prefix, new_arch = mlarch.split("_")
+            archs.append(new_arch)
+
     archs.reverse()
     pkgdata = d.expand('${TMPDIR}/pkgdata/')
     targetdir = d.expand('${TARGET_VENDOR}-${TARGET_OS}/runtime/')
-- 
1.7.6.1






More information about the Openembedded-core mailing list