diff options
author | Richard Purdie <richard@openedhand.com> | 2007-07-17 14:42:16 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-07-17 14:42:16 +0000 |
commit | 7d44fdb7dc59846812b238fc89e587ea03dbfde6 (patch) | |
tree | ee1847108f5a3579a1f9eebed295a27383bece3c /scripts/poky-env-internal | |
parent | b2d7cb67463e8e8d20b98ce43edb49e51526c973 (diff) | |
download | openembedded-core-7d44fdb7dc59846812b238fc89e587ea03dbfde6.tar.gz openembedded-core-7d44fdb7dc59846812b238fc89e587ea03dbfde6.tar.bz2 openembedded-core-7d44fdb7dc59846812b238fc89e587ea03dbfde6.tar.xz openembedded-core-7d44fdb7dc59846812b238fc89e587ea03dbfde6.zip |
poky-env-internal: fixes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2197 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-env-internal')
-rwxr-xr-x | scripts/poky-env-internal | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index ccbd2088a..78a7d45ad 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal @@ -26,6 +26,8 @@ OEROOT=`pwd` if [ "x$1" = "x" ]; then BDIR="build" +else + BDIR="$1" fi BBDIR="$OEROOT/bitbake/" @@ -48,7 +50,6 @@ BUILDDIR=`readlink -f "$BUILDDIR"` if ! (test -d "$BBDIR" && test -d "$PKGDIR" && test -d "$BUILDDIR"); then echo >&2 "Error: Not all directories exist! Did you run this script in poky directory?" - exit 1 fi if ! (test -r "$BUILDDIR/conf/local.conf"); then |