From: Richard Purdie Date: Thu, 17 Sep 2009 00:01:14 +0000 (+0100) Subject: bitbake.conf: Use BASE_PACKAGE_ARCH as the default, not HOST_ARCH X-Git-Tag: 2011-1~6987 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6024456d595dc1ea7421c7dd725982a5d524393f;p=openembedded-core.git bitbake.conf: Use BASE_PACKAGE_ARCH as the default, not HOST_ARCH Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index a449b51151..a0e62578ec 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -97,7 +97,7 @@ SDK_CC_ARCH = "${BUILD_CC_ARCH}" BASE_PACKAGE_ARCH = "${HOST_ARCH}" PACKAGE_ARCH = "${BASE_PACKAGE_ARCH}" -MACHINE_ARCH = "${@[bb.data.getVar('HOST_ARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))]}" +MACHINE_ARCH = "${@[bb.data.getVar('BASE_PACKAGE_ARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))]}" PACKAGE_ARCHS = "all any noarch ${TARGET_ARCH} ${PACKAGE_EXTRA_ARCHS} ${MACHINE}" MULTIMACH_ARCH = "${PACKAGE_ARCH}"