From: Scott Garman Date: Wed, 26 Sep 2012 18:02:27 +0000 (-0700) Subject: runqemu-internal: don't append an empty element to PATH X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~39863 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f7f590369eaa76dc970c9cffd1f0db53ce08c00;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git runqemu-internal: don't append an empty element to PATH Bitbake fails to run when an empty element exists in $PATH. Avoid creating this situation when $CROSSPATH is not set. This fixes bug [YOCTO #3101] Signed-off-by: Scott Garman Signed-off-by: Saul Wold --- diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index 6b8bb6520ea..0f07bad9700 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -472,7 +472,11 @@ if [ "x$QEMUOPTIONS" = "x" ]; then return fi -PATH=$CROSSPATH:$OECORE_NATIVE_SYSROOT/usr/bin:$PATH +if [ "x$CROSSPATH" = "x" ]; then + PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$PATH +else + PATH=$CROSSPATH:$OECORE_NATIVE_SYSROOT/usr/bin:$PATH +fi QEMUBIN=`which $QEMU 2> /dev/null` if [ ! -x "$QEMUBIN" ]; then