From: Robert Yang Date: Thu, 8 Oct 2015 03:00:24 +0000 (-0700) Subject: glibc-initial.inc: use relative path to run configure X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e2d74713a6e54751e2d46fce49a294be4e785bc;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git glibc-initial.inc: use relative path to run configure Avoid potential build path in output files. Signed-off-by: Robert Yang --- diff --git a/meta/recipes-core/glibc/glibc-initial.inc b/meta/recipes-core/glibc/glibc-initial.inc index 35008489ee7..a09e8a9a357 100644 --- a/meta/recipes-core/glibc/glibc-initial.inc +++ b/meta/recipes-core/glibc/glibc-initial.inc @@ -11,7 +11,7 @@ TOOLCHAIN_OPTIONS = " --sysroot=${STAGING_DIR_TCBOOTSTRAP}" do_configure () { (cd ${S} && gnu-configize) || die "failure in running gnu-configize" find ${S} -name "configure" | xargs touch - ${S}/configure --host=${TARGET_SYS} --build=${BUILD_SYS} \ + ../git/configure --host=${TARGET_SYS} --build=${BUILD_SYS} \ --prefix=/usr \ --without-cvs --disable-sanity-checks \ --with-headers=${STAGING_DIR_TARGET}${includedir} \