summaryrefslogtreecommitdiff
path: root/lib/make/extras/LAPACK/setup.sh
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-08-29 15:59:38 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-08-29 15:59:38 +0000
commit98cc482f6cd5209f0de8ff99a6c067c72948df6b (patch)
tree5a0b0389599ab97b27f45852835bbf04b86def00 /lib/make/extras/LAPACK/setup.sh
parenta77b9bd69e9d8d32d7895aa9f7344a33ac41b792 (diff)
Indent configure messages of individual external packages for somewhat better
readability. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3389 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/extras/LAPACK/setup.sh')
-rwxr-xr-xlib/make/extras/LAPACK/setup.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/make/extras/LAPACK/setup.sh b/lib/make/extras/LAPACK/setup.sh
index e43fe0c8..f3b134d3 100755
--- a/lib/make/extras/LAPACK/setup.sh
+++ b/lib/make/extras/LAPACK/setup.sh
@@ -16,16 +16,16 @@ if test "X$choose_lapack" = "Xyes" ; then
# Search for LAPACK installation
if test -z "$LAPACK_DIR"; then
- echo 'LAPACK selected but no LAPACK_DIR set... Checking some places'
+ echo ' LAPACK selected but no LAPACK_DIR set... Checking some places'
CCTK_Search LAPACK_DIR '/usr/lib /usr/local/lib' liblapack.a
if test -z "$LAPACK_DIR"; then
CCTK_Search LAPACK_DIR '/usr/lib /usr/local/lib' liblapack.so
fi
if test -z "$LAPACK_DIR"; then
- echo 'Unable to locate the LAPACK library - please set LAPACK_DIR'
+ echo ' Unable to locate the LAPACK library - please set LAPACK_DIR'
exit 2
fi
- echo "Found a LAPACK package in $LAPACK_DIR"
+ echo " Found a LAPACK package in $LAPACK_DIR"
elif test "$LAPACK_DIR" = 'none'; then
# user doesn't want the library path added
LAPACK_DIR=''
@@ -46,8 +46,8 @@ if test "X$choose_lapack" = "Xyes" ; then
elif test "X$choose_lapack" != "Xno" -a "X$choose_lapack" != "X"; then
- echo "Don't understand the setting \"LAPACK=$LAPACK\" !"
- echo 'Please set it to either "yes" or "no", or leave it blank (same as "no") !'
+ echo " Don't understand the setting \"LAPACK=$LAPACK\" !"
+ echo ' Please set it to either "yes" or "no", or leave it blank (same as "no") !'
exit 1
fi