[oe-commits] Lianhao Lu : crosssdk.bbclass: Set TUNE_PKGARCH to SDK_PKGARCH.

git at git.openembedded.org git at git.openembedded.org
Sat Mar 31 17:10:21 UTC 2012


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

Author: Lianhao Lu <lianhao.lu at intel.com>
Date:   Sat Mar 31 14:49:22 2012 +0800

crosssdk.bbclass: Set TUNE_PKGARCH to SDK_PKGARCH.

The TUNE_PKGARCH of crosssdk should be set to SDK_ARCH, not the one
from target machine's configuration.

Fixed bug [YOCTO #2206]

Signed-off-by: Lianhao Lu <lianhao.lu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

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

diff --git a/meta/classes/crosssdk.bbclass b/meta/classes/crosssdk.bbclass
index 83753b4..67df236 100644
--- a/meta/classes/crosssdk.bbclass
+++ b/meta/classes/crosssdk.bbclass
@@ -1,6 +1,11 @@
 inherit cross
 
 PACKAGE_ARCH = "${SDK_ARCH}"
+python () {
+	# set TUNE_PKGARCH to SDK_ARCH
+	d.setVar('TUNE_PKGARCH', d.getVar('SDK_ARCH', True))
+}
+
 STAGING_DIR_TARGET = "${STAGING_DIR}/${SDK_ARCH}-nativesdk${SDK_VENDOR}-${SDK_OS}"
 STAGING_BINDIR_TOOLCHAIN = "${STAGING_DIR_NATIVE}${bindir_native}/${TARGET_ARCH}${TARGET_VENDOR}-${TARGET_OS}"
 





More information about the Openembedded-commits mailing list