No need to move the set -u

This commit is contained in:
Thomas Preud'homme 2009-06-25 17:40:42 +02:00 committed by Thomas Preud'homme
parent d646451091
commit 33614392cd
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,7 @@
#! /bin/bash
set -u
# Files and directories
binDir="bin"
calcDir="calculation"
@ -24,15 +26,13 @@ logFileName="\$perfDirName/cache_\$typeCache-nbProd_\$nbProd-typeProd_\$typeProd
expDirName="logs"
perfDirName="$expDirName/perfCommMulti-`date +'%F-%Hh%Mm%S'`"
if [ -n "${LD_LIBRARY_PATH}" ]
if [ -n "${LD_LIBRARY_PATH:-}" ] # If LD_LIBRARY_PATH is unbound then the expansion is "null" value
then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${PHLDir}/${PHLLibDir}:${PAPIDir}/${PAPILibDir}:${PAPIDir}/${PAPILibDir}/${PAPIPFMDir}"
else
LD_LIBRARY_PATH="${PHLDir}/${PHLLibDir}:${PAPIDir}/${PAPILibDir}:${PAPIDir}/${PAPILibDir}/${PAPIPFMDir}"
fi
set -u
PAPILibPresent=""
PFMLibPresent=""
papiHighLevelLibPresent=""