From 5d5fab77cf9616bf62023c202b38f309f8bbf189 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 29 Apr 2008 17:12:25 +0000 Subject: 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 --- scripts/poky-env-internal | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'scripts/poky-env-internal') diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index 489956ebce..78646e3c6e 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal @@ -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/" -- cgit v1.2.3-54-g00ecf