From: Khem Raj Date: Tue, 19 Oct 2010 19:12:07 +0000 (-0700) Subject: gcc-configure-target.inc: Filter out --with-sysroot X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=565b3f4965277f3a893b6417940ac59d78a97fb0;p=openembedded.git gcc-configure-target.inc: Filter out --with-sysroot * For target gcc we dont need to specify --with-sysroot even with libtool 2.4 Signed-off-by: Khem Raj --- diff --git a/recipes/gcc/gcc-configure-target.inc b/recipes/gcc/gcc-configure-target.inc index 03d7a6bddd..24b9a16f84 100644 --- a/recipes/gcc/gcc-configure-target.inc +++ b/recipes/gcc/gcc-configure-target.inc @@ -3,4 +3,6 @@ require gcc-configure-common.inc EXTRA_OECONF_PATHS = " \ --with-local-prefix=${prefix}/local \ --with-gxx-include-dir=${includedir}/c++/${BINV} \ - --with-build-sysroot=${STAGING_DIR_HOST}" + --with-build-sysroot=${STAGING_DIR_HOST} \ + " +CONFIGUREOPTS := "${@oe_filter_out('--with-sysroot', '${CONFIGUREOPTS}', d)}"