[oe-commits] Dongxiao Xu : rootfs_rpm: setting DEFAULTTUNE for multilib archs

git version control git at git.openembedded.org
Fri Sep 2 17:18:21 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 54306ff373e13696637b547fa1514e0ef8633248
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=54306ff373e13696637b547fa1514e0ef8633248

Author: Dongxiao Xu <dongxiao.xu at intel.com>
Date:   Fri Sep  2 11:38:43 2011 +0800

rootfs_rpm: setting DEFAULTTUNE for multilib archs

To get the MULTILIB_PACKAGE_ARCHS, we need to get the corresponding
DEFAULTTUNE value. This fixes the multilib arch directory missing issue
in solvedb-ml_archs.conf.

Signed-off-by: Dongxiao Xu <dongxiao.xu at intel.com>

---

 meta/classes/rootfs_rpm.bbclass |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/classes/rootfs_rpm.bbclass b/meta/classes/rootfs_rpm.bbclass
index 7f24b9c..135ca75 100644
--- a/meta/classes/rootfs_rpm.bbclass
+++ b/meta/classes/rootfs_rpm.bbclass
@@ -215,6 +215,9 @@ python () {
         eext = ext.split(':')
         if len(eext) > 1 and eext[0] == 'multilib':
             localdata = bb.data.createCopy(d)
+            default_tune = localdata.getVar("DEFAULTTUNE_virtclass-multilib-" + eext[1], False)
+            if default_tune:
+                localdata.setVar("DEFAULTTUNE", default_tune)
             ml_package_archs += localdata.getVar("PACKAGE_ARCHS", True) or ""
             #bb.note("ML_PACKAGE_ARCHS %s %s %s" % (eext[1], localdata.getVar("PACKAGE_ARCHS", True) or "(none)", overrides))
     bb.data.setVar('MULTILIB_PACKAGE_ARCHS', ml_package_archs, d)





More information about the Openembedded-commits mailing list