summaryrefslogtreecommitdiff
path: root/BeagleBoardPkg
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-12-29 12:16:57 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-12-29 12:16:57 +0000
commit9308b78a60dad1c0a48389ada80658173951ce06 (patch)
tree410607a50cad84ac41fc4551b52b642a554428f0 /BeagleBoardPkg
parentf5df743f4860553a5fd7f045fd1b77d5654788ae (diff)
downloadedk2-platforms-9308b78a60dad1c0a48389ada80658173951ce06.tar.xz
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
Diffstat (limited to 'BeagleBoardPkg')
-rwxr-xr-xBeagleBoardPkg/build.sh8
1 files 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