aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/binutils
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2010-10-20 08:20:47 -0700
committerKhem Raj <raj.khem@gmail.com>2010-10-20 08:23:36 -0700
commit096ab4990ce8aaa12196ee10d8ad23a86063a289 (patch)
tree6080948c4de99e81869a5dd56a3684841d994cd2 /recipes/binutils
parente66dd275443ed9fcfa0a6e4f43774843e32c707e (diff)
downloadopenembedded-096ab4990ce8aaa12196ee10d8ad23a86063a289.tar.gz
binutils.inc: Dont filter out all --with-sysroot strings
* Binutils.inc is included into cross recipes because the cross recipes include target recipe. We only need to remove --with-sysroot full word only and not --with-systoot=... Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/binutils')
-rw-r--r--recipes/binutils/binutils.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/binutils/binutils.inc b/recipes/binutils/binutils.inc
index 4e7f466be4..96e2041725 100644
--- a/recipes/binutils/binutils.inc
+++ b/recipes/binutils/binutils.inc
@@ -42,7 +42,7 @@ B = "${S}/build.${HOST_SYS}.${TARGET_SYS}"
EXTRA_OECONF = "--program-prefix=${TARGET_PREFIX} \
--enable-shared"
-CONFIGUREOPTS := "${@oe_filter_out('--with-sysroot', '${CONFIGUREOPTS}', d)}"
+CONFIGUREOPTS := "${@oe_filter_out('--with-sysroot$', '${CONFIGUREOPTS}', d)}"
# This is necessary due to a bug in the binutils Makefiles
EXTRA_OEMAKE = "configure-build-libiberty all"