poky-env-internal: Allow user to overide build directory

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2195 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-07-17 13:29:36 +00:00
parent 21b7fabf6a
commit 854a97c641
1 changed files with 5 additions and 1 deletions

View File

@ -24,9 +24,13 @@
OEROOT=`pwd`
if [ "x$1" = "x" ]; then
BDIR="build"
fi
BBDIR="$OEROOT/bitbake/"
PKGDIR="$OEROOT/meta/"
BUILDDIR="$OEROOT/build/"
BUILDDIR="$OEROOT/$BDIR/"
MSG=''
BUILD_ARCH=`uname -m`