diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-04-08 09:10:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-08 09:40:03 -0700 |
commit | 4040031c79bd69c00982f7e32aa9710bdc2b9c23 (patch) | |
tree | 62569d1ce4c429fbacce3b789fb0baa04825cdc5 /meta/conf/bitbake.conf | |
parent | b136520e787744abd61f7aab8430a46c910457aa (diff) | |
download | openembedded-core-4040031c79bd69c00982f7e32aa9710bdc2b9c23.tar.gz openembedded-core-4040031c79bd69c00982f7e32aa9710bdc2b9c23.tar.bz2 openembedded-core-4040031c79bd69c00982f7e32aa9710bdc2b9c23.zip |
bitbake.conf: fix PACKAGE_ARCH[vardepsexclude]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index a825c17236..f4de612711 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -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}" |