From 9308b78a60dad1c0a48389ada80658173951ce06 Mon Sep 17 00:00:00 2001 From: oliviermartin Date: Thu, 29 Dec 2011 12:16:57 +0000 Subject: [PATCH] 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 --- BeagleBoardPkg/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.39.2