aboutsummaryrefslogtreecommitdiffstats
path: root/conf/distro/include/sane-toolchain.inc
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-12-17 00:25:40 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2010-12-17 17:31:01 +0100
commit7ea9be2b5d3ac4fb5da74506c2516b3412726495 (patch)
tree36888941ba92ab0268dc71357574e186cea70c16 /conf/distro/include/sane-toolchain.inc
parentb116445f606d5b04bcc2e671b3d59ea36952edd6 (diff)
downloadopenembedded-7ea9be2b5d3ac4fb5da74506c2516b3412726495.tar.gz
sane-toolchain: use hard assignment instead of weak for libtool version and LIBTOOL_HAS_SYSROOT
* bitbake.conf already has weak LIBTOOL_HAS_SYSROOT ?= "no" so setting to "yes" here was ignored Acked-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'conf/distro/include/sane-toolchain.inc')
-rw-r--r--conf/distro/include/sane-toolchain.inc8
1 files changed, 6 insertions, 2 deletions
diff --git a/conf/distro/include/sane-toolchain.inc b/conf/distro/include/sane-toolchain.inc
index c0a4021078..e29893a125 100644
--- a/conf/distro/include/sane-toolchain.inc
+++ b/conf/distro/include/sane-toolchain.inc
@@ -10,8 +10,12 @@ PREFERRED_BINUTILS_VERSION ?= "2.20.1"
PREFERRED_UCLIBC_VERSION ?= "git"
PREFERRED_EGLIBC_VERSION ?= "2.12"
PREFERRED_GLIBC_VERSION ?= "2.10.1"
-PREFERRED_LIBTOOL_VERSION ?= "2.4"
-LIBTOOL_HAS_SYSROOT ?= "yes"
+# we need hard assignment here, because bitbake.conf has
+# weak "no" first so weak "yes" here won't override it
+# also use hard assignment for version to make sure it's
+# new enough for SYSROOT support
+PREFERRED_LIBTOOL_VERSION = "2.4"
+LIBTOOL_HAS_SYSROOT = "yes"
# Prefer glibc 2.6 and uclibc 0.9.30, these have had the most testing.
PREFERRED_VERSION_glibc ?= "${PREFERRED_GLIBC_VERSION}"