From: Richard Purdie Date: Fri, 17 Dec 2010 13:25:11 +0000 (+0000) Subject: poky-env-internal: Search scripts before the bitbake directory so we can override... X-Git-Tag: 2011-1~3399 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=68ddced930c68997bfd486512dcf3ac2a1c6761c;p=openembedded-core.git poky-env-internal: Search scripts before the bitbake directory so we can override bitbake's main script Signed-off-by: Richard Purdie --- diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index c8b39c9dbf..2000b5bb42 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal @@ -44,7 +44,7 @@ fi BITBAKEDIR="$OEROOT/bitbake$BBEXTRA/" -PATH="$BITBAKEDIR/bin/:$OEROOT/scripts:$PATH" +PATH="${OEROOT}/scripts:$BITBAKEDIR/bin/:$PATH" # Remove any symlinks from paths BITBAKEDIR=`readlink -f "$BITBAKEDIR"`