From: oliviermartin Date: Thu, 29 Dec 2011 12:16:57 +0000 (+0000) Subject: BeagleBoard: Support bash script when 'set -u' X-Git-Tag: edk2-stable201903~13719 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=9308b78a60dad1c0a48389ada80658173951ce06 BeagleBoard: Support bash script when 'set -u' git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12902 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/BeagleBoardPkg/build.sh b/BeagleBoardPkg/build.sh index 87f29891ba..ad8e69fc24 100755 --- a/BeagleBoardPkg/build.sh +++ b/BeagleBoardPkg/build.sh @@ -37,7 +37,7 @@ function process_debug_scripts { # # Setup workspace if it is not set # -if [ -z "$WORKSPACE" ] +if [ -z "${WORKSPACE:-}" ] then echo Initializing workspace cd .. @@ -53,7 +53,7 @@ fi # # Pick a default tool type for a given OS if no toolchain already defined # -if [ -z "$TARGET_TOOLS" ] +if [ -z "${TARGET_TOOLS:-}" ] then case `uname` in CYGWIN*) @@ -105,9 +105,9 @@ fi # Build the edk2 BeagleBoard code # if [[ $TARGET == RELEASE ]]; then - build -p $WORKSPACE/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS -b $TARGET -D DEBUG_TARGET=RELEASE $2 $3 $4 $5 $6 $7 $8 + build -p $WORKSPACE/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS -b $TARGET -D DEBUG_TARGET=RELEASE ${2:-} ${3:-} ${4:-} ${5:-} ${6:-} ${7:-} ${8:-} else - build -p $WORKSPACE/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS -b $TARGET $1 $2 $3 $4 $5 $6 $7 $8 + build -p ${WORKSPACE:-}/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS -b $TARGET ${1:-} ${2:-} ${3:-} ${4:-} ${5:-} ${6:-} ${7:-} ${8:-} fi