Write more compact code.

This commit is contained in:
Christoph Niethammer 2011-12-01 10:29:58 +00:00
parent bc516855ff
commit 0be4a91a0f

11
sit
View file

@ -55,12 +55,12 @@ else
fi
case $PLATFORM in
hermit)
if [ "$COMPILER" == "system" ] ; then
echo "Using system default compiler"
COMPILER="" # prevent any compiler specs in the prefix
else
case $PLATFORM in
hermit)
module swap $(module list -l 2>&1 | awk '/^PrgEnv-/{print $1}') PrgEnv-${COMPILER}
if [ ! -z "$COMPILER_VERSION" ] ; then
if [ "${COMPILER}" == "gnu" ] ; then
@ -69,13 +69,8 @@ case $PLATFORM in
module swap $COMPILER $COMPILER/$COMPILER_VERSION
fi
fi
fi
;;
laki|*)
if [ "$COMPILER" == "system" ] ; then
echo "Using system default compiler"
COMPILER="" # prevent any compiler specs in the prefix
else
if [ -z "$COMPILER_VERSION" ] ; then
COMPILER_MODULE=compiler/${COMPILER}
else
@ -83,9 +78,9 @@ case $PLATFORM in
fi
echo "Loading compiler module ${COMPILER_MODULE}"
module load ${COMPILER_MODULE}
fi
;;
esac
fi
if [ ! -z "${COMPILER}" ] ; then
# reevaluate compiler version