From: Richard Purdie Date: Fri, 14 Oct 2011 14:30:21 +0000 (+0100) Subject: bitbake.conf: Use TRANSLATED_TARGET_ARCH in OVERRIDES since any variable with _ in... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c3d2b287a7720343284e17f8e13077618bf6512;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake.conf: Use TRANSLATED_TARGET_ARCH in OVERRIDES since any variable with _ in it isuseless there (e.g. x86_64) (From OE-Core rev: b99b92d9136b7872ba0c021e1a6ef070b2ee9b78) Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index e311e30fcca..e2c1b6f12de 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"