aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2010-12-21 22:19:18 -0800
committerKhem Raj <raj.khem@gmail.com>2010-12-22 11:10:09 -0800
commite2f8a0db6b52fc77a3377675899194b4684d454e (patch)
treed2ffc774e4b3139e194e05f54842a93c10ba2674
parent80317a3dcd529bc9a0b8dd634f1c7d405bd15ecd (diff)
downloadopenembedded-e2f8a0db6b52fc77a3377675899194b4684d454e.tar.gz
sane-toolchain.inc: Use BASE_PACKAGE_ARCH instead of FEED_ARCH and prepend to OVERRIDES
Currently it ends up after local override and hence appears first in FILESPATH and for buiding uclibc_git.bb on qemuarm it picks wrong uClibc.machine file from uclibc-git/armv5te where as it should have picked from uclibc-git/qemuarm Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--conf/distro/include/sane-toolchain.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/distro/include/sane-toolchain.inc b/conf/distro/include/sane-toolchain.inc
index 6802eb23c7..5d4fd45f96 100644
--- a/conf/distro/include/sane-toolchain.inc
+++ b/conf/distro/include/sane-toolchain.inc
@@ -72,10 +72,10 @@ TARGET_VENDOR = "-oe"
TOOLCHAIN_TYPE ?= "internal"
require conf/distro/include/toolchain-${TOOLCHAIN_TYPE}.inc
-# Add FEED_ARCH to the overrides list so that we can override the
+# Add BASE_PACKAGE_ARCH to the overrides list so that we can override the
# ARM_INSTRUCTION_SET like below
-OVERRIDES .= ":${FEED_ARCH}"
+OVERRIDES =. "${BASE_PACKAGE_ARCH}:"
# ARM920T and up can use thumb mode to decrease binary size at the expense of speed
# (the complete story is a bit more nuanced due to cache starvation)