[oe-commits] Khem Raj : binutils.inc: Dont filter out all --with-sysroot strings

git version control git at git.openembedded.org
Wed Oct 20 15:27:09 UTC 2010


Module: openembedded.git
Branch: master
Commit: 096ab4990ce8aaa12196ee10d8ad23a86063a289
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=096ab4990ce8aaa12196ee10d8ad23a86063a289

Author: Khem Raj <raj.khem at gmail.com>
Date:   Wed Oct 20 08:20:47 2010 -0700

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 at gmail.com>

---

 recipes/binutils/binutils.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/binutils/binutils.inc b/recipes/binutils/binutils.inc
index 4e7f466..96e2041 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"
 





More information about the Openembedded-commits mailing list