summaryrefslogtreecommitdiff
path: root/lib/make
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-19 14:56:36 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-19 14:56:36 +0000
commita2c44596380a568a95af4b4754a4cfb48d7acefc (patch)
tree666d06fde98d26bd3ea6242c3c58be2354bd3954 /lib/make
parent3ab5cb019753e0b90e604925990a87632189fa92 (diff)
Allow configuration process to complete if HDF5 is not set !!!!!!
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@967 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make')
-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 9caae5f2..96e7ea5a 100755
--- a/lib/make/extras/HDF5/setup.sh
+++ b/lib/make/extras/HDF5/setup.sh
@@ -8,9 +8,7 @@
# @enddesc
# @@*/
-if test -z "$HDF5" ; then
- exit 0
-fi
+if test -n "$HDF5" ; then
echo "Configuring with HDF5. Blocks with #ifdef HDF5 will be activated"
@@ -66,3 +64,5 @@ CCTK_WriteLine make.extra.defn ""
CCTK_WriteLine make.extra.defn 'LIBS += $(HDF5_LIBS)'
CCTK_WriteLine make.extra.defn 'LIBDIRS += $(HDF5_LIB_DIRS)'
CCTK_WriteLine make.extra.defn 'SYS_INC_DIRS += $(HDF5_INC_DIRS)'
+
+fi