aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2002-05-22 11:14:14 +0000
committertradke <tradke@7842ec3a-9562-4be5-9c5b-06ba18f2b668>2002-05-22 11:14:14 +0000
commit0260a6e1058ff01575352ebbdeb239cc576d856a (patch)
treefe0a46ca1b56bc7b10e01ccc63978bd571f1da26
parent42f5259367d1f373e856101e6338e59bfa34b25c (diff)
Fixed a syntax error (added missing closing bracket).
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5Util/trunk@66 7842ec3a-9562-4be5-9c5b-06ba18f2b668
-rw-r--r--src/make.configuration.defn4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.configuration.defn b/src/make.configuration.defn
index 8879748..1027aa1 100644
--- a/src/make.configuration.defn
+++ b/src/make.configuration.defn
@@ -3,10 +3,10 @@
# 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 !"
+ $(error "IOHDF5Util requires HDF5. Please configure with HDF5 or remove IOHDF5Util from Thornlist !")
endif
# make sure that IOHDF5Util was configured with PUGH
ifeq ($(findstring CactusPUGH/PUGH,$(THORNS)),)
- $(error "IOHDF5Util requires PUGH. Please add CactusPUGH/PUGH or remove IOHDF5Util from Thornlist !"
+ $(error "IOHDF5Util requires PUGH. Please add CactusPUGH/PUGH or remove IOHDF5Util from Thornlist !")
endif