scripts/poky-env-internal: Fix PATH

This commit is contained in:
Richard Purdie 2008-11-06 15:21:36 +00:00
parent 4a04f29527
commit 1e967ea93e
1 changed files with 2 additions and 2 deletions

View File

@ -76,12 +76,12 @@ BUILD_ARCH=`uname -m`
BUILD_OS=`uname | tr '[A-Z]' '[a-z]'`
BUILD_SYS="$BUILD_ARCH-$BUILD_OS"
PATH="$BBDIR/bin/:$OEROOT/scripts:$PATH"
PATH="$BITBAKEDIR/bin/:$OEROOT/scripts:$PATH"
cd "$BUILDDIR"
# Remove any symlinks from paths
BBDIR=`readlink -f "$BBDIR"`
BITBAKEDIR=`readlink -f "$BITBAKEDIR"`
PKGDIR=`readlink -f "$PKGDIR"`
BUILDDIR=`readlink -f "$BUILDDIR"`