]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake.conf: fix PACKAGE_ARCH[vardepsexclude]
authorSaul Wold <sgw@linux.intel.com>
Fri, 8 Apr 2011 16:10:31 +0000 (09:10 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 8 Apr 2011 16:40:03 +0000 (09:40 -0700)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/conf/bitbake.conf

index a825c17236e5507bb021db0d36ad085ba6b2c160..f4de612711998251430df179338821433e6a8b80 100644 (file)
@@ -95,9 +95,9 @@ PACKAGE_ARCH = "${BASE_PACKAGE_ARCH}"
 MACHINE_ARCH = "${@[bb.data.getVar('BASE_PACKAGE_ARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))].replace('-', '_')}"
 PACKAGE_EXTRA_ARCHS ??= "${TARGET_ARCH}"
 PACKAGE_ARCHS = "all any noarch ${PACKAGE_EXTRA_ARCHS} ${MACHINE_ARCH}"
-# MACHINE shouldn't be included here as a variable dependency since machine specific 
-# packages are handled using multimachine
-PACKAGE_ARCHS[vardepsexclude] = "MACHINE"
+# MACHINE_ARCH shouldn't be included here as a variable dependency
+# since machine specific packages are handled using multimachine
+PACKAGE_ARCHS[vardepsexclude] = "MACHINE_ARCH"
 
 MULTIMACH_ARCH = "${PACKAGE_ARCH}"
 MULTIMACH_TARGET_SYS = "${MULTIMACH_ARCH}${TARGET_VENDOR}-${TARGET_OS}"