mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
scripts: Allow passing multiple parameters to the autobuilder
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4370 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -23,11 +23,12 @@
|
||||
# Also update the locations at the top of conf/local.conf
|
||||
|
||||
OEROOT=`pwd`
|
||||
|
||||
if [ "x$1" = "x" ]; then
|
||||
BDIR="build"
|
||||
else
|
||||
BDIR="$1"
|
||||
if [ "x$BDIR" = "x" ]; then
|
||||
if [ "x$1" = "x" ]; then
|
||||
BDIR="build"
|
||||
else
|
||||
BDIR="$1"
|
||||
fi
|
||||
fi
|
||||
|
||||
BBDIR="$OEROOT/bitbake/"
|
||||
|
||||
Reference in New Issue
Block a user