diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-14 15:30:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-15 00:40:51 +0100 |
commit | b99b92d9136b7872ba0c021e1a6ef070b2ee9b78 (patch) | |
tree | b08e06e9c77c4647c226853a8d283df81c9413f6 /meta | |
parent | 362512b83775ad7020e5870a594f0e7ca9ef83ba (diff) | |
download | openembedded-core-b99b92d9136b7872ba0c021e1a6ef070b2ee9b78.tar.gz openembedded-core-b99b92d9136b7872ba0c021e1a6ef070b2ee9b78.tar.bz2 openembedded-core-b99b92d9136b7872ba0c021e1a6ef070b2ee9b78.zip |
bitbake.conf: Use TRANSLATED_TARGET_ARCH in OVERRIDES since any variable with _ in it isuseless there (e.g. x86_64)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index e311e30fcc..e2c1b6f12d 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -666,7 +666,7 @@ AUTO_LIBNAME_PKGS = "${PACKAGES}" # # This works for functions as well, they are really just environment variables. # Default OVERRIDES to make compilation fail fast in case of build system misconfiguration. -OVERRIDES = "${TARGET_OS}:${TARGET_ARCH}:build-${BUILD_OS}:pn-${PN}:${MACHINEOVERRIDES}:${DISTROOVERRIDES}:forcevariable" +OVERRIDES = "${TARGET_OS}:${TRANSLATED_TARGET_ARCH}:build-${BUILD_OS}:pn-${PN}:${MACHINEOVERRIDES}:${DISTROOVERRIDES}:forcevariable" DISTROOVERRIDES ?= "${DISTRO}" MACHINEOVERRIDES ?= "${MACHINE}" MACHINEOVERRIDES[vardepsexclude] = "MACHINE" |