From: Khem Raj Date: Wed, 20 Oct 2010 15:20:47 +0000 (-0700) Subject: binutils.inc: Dont filter out all --with-sysroot strings X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=096ab4990ce8aaa12196ee10d8ad23a86063a289;p=openembedded.git 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 --- 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"