aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2004-04-10 18:17:03 +0000
committerschnetter <schnetter@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2004-04-10 18:17:03 +0000
commitbffce1956a61c28cc58a9cc7dd8fdd3eb0e1fa7d (patch)
tree3c2386c562c12a54dd6af51e21f1983f433b022f
parent57cbdf7d691b6274be0a294956be69c513fe2d40 (diff)
Clean up the check for HDF5
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5Util/trunk@112 7842ec3a-9562-4be5-9c5b-06ba18f2b668
-rw-r--r--src/make.configuration.defn6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 4de51ec..234da33 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -1,7 +1,7 @@
# make.configuration.defn for IOHDF5Util
# $Header$
-# make sure that IOHDF5Util was configured with HDF5
-ifeq ($(strip $(HDF5_LIBS)),)
- $(error "IOHDF5Util requires HDF5. Please configure with HDF5 or remove IOHDF5Util from Thornlist !")
+# Ensure that the HDF5 library is available
+ifeq ($(strip HAVE_HDF5), )
+ $(error IOHDF5Util requires the HDF5 library. Please configure with HDF5 or remove IOHDF5Util from the ThornList.)
endif