summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-05-02 09:28:53 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-05-02 09:28:53 +0000
commit504c14e13946ba22a551ab233b1f5e5be8440338 (patch)
tree4dd595fff176e1dd655bd1c2e5d89051a3acc68e
parent496ed759ab57d1c9daa0b135b99170540c4c6b4d (diff)
Use round brackets (instead of curly ones) to reference makefile variables.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4037 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rwxr-xr-xlib/make/extras/HDF5/setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/make/extras/HDF5/setup.sh b/lib/make/extras/HDF5/setup.sh
index 172ce464..2368f553 100755
--- a/lib/make/extras/HDF5/setup.sh
+++ b/lib/make/extras/HDF5/setup.sh
@@ -165,9 +165,9 @@ fi
# Add MPI libraries for parallel HDF5
if [ $test_phdf5 -eq 0 ]; then
- HDF5_LIBS="$HDF5_LIBS \${MPI_LIBS}"
- HDF5_INC_DIRS="$HDF5_INC_DIRS \${MPI_INC_DIRS}"
- HDF5_LIB_DIRS="$HDF5_LIB_DIRS \${MPI_LIB_DIRS}"
+ HDF5_LIBS="$HDF5_LIBS \$(MPI_LIBS)"
+ HDF5_INC_DIRS="$HDF5_INC_DIRS \$(MPI_INC_DIRS)"
+ HDF5_LIB_DIRS="$HDF5_LIB_DIRS \$(MPI_LIB_DIRS)"
fi
# Finally, add the math lib which might not be linked against by default