From 096ab4990ce8aaa12196ee10d8ad23a86063a289 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 20 Oct 2010 08:20:47 -0700 Subject: 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 --- recipes/binutils/binutils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/binutils') 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" -- cgit 1.2.3-korg