summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-03-22 16:21:49 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-03-22 16:21:49 (GMT)
commit13c9a30beb9e177acffbb5cc5c1601a7d8b6199b (patch)
tree3af36050943d5814addaf71e16ddfff12a167d63 /configure
parent8473025b4516fe4658271bb20f4b1a92de81c666 (diff)
downloadhdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.zip
hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.gz
hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.bz2
[svn-r1154] Changes since 19990322
---------------------- ./configure.in ./configure [REGENERATED] ./config/commence.in A few tweaks to the makefile rules for rebuilding makefiles. ./src/H5detect.c Fixed a really stupid mistake: resetting the signal handler after a longjmp(). This should fix Bob's SIGBUS on Solaris.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure19
1 files changed, 14 insertions, 5 deletions
diff --git a/configure b/configure
index 422d363..027d7f2 100755
--- a/configure
+++ b/configure
@@ -4788,6 +4788,13 @@ fi
rm -f conftest conftest.o conftest.c dummy.o
+
+# First the stamp1 file for H5config.h.in
+mkdir ./config >/dev/null 2>&1
+touch ./config/stamp1
+
+# Then the config.status file (but not makefiles)
+saved_no_create=$no_create
no_create=yes
trap '' 1 2 15
cat > confcache <<\EOF
@@ -5177,8 +5184,10 @@ chmod +x $CONFIG_STATUS
rm -fr confdefs* $ac_clean_files
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
-sleep 1
-mkdir ./config >/dev/null 2>&1
-touch ./config/stamp1 ./config/stamp2
-sleep 1
-${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
+no_create=$saved_no_create
+
+# Then the stamp2 file for H5config.h
+touch ./config/stamp2
+
+# Finally the makefiles
+test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1