summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-01-31 20:55:31 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-01-31 20:55:31 (GMT)
commit29b3e5f755dc74d76ea85d0717bf75120d759e76 (patch)
treec9e71a44a56309681efa92da67afcd467375aed3 /bin
parent7b6f1701bca63dd08c7d86c11a3abf6ece4ea11f (diff)
downloadhdf5-29b3e5f755dc74d76ea85d0717bf75120d759e76.zip
hdf5-29b3e5f755dc74d76ea85d0717bf75120d759e76.tar.gz
hdf5-29b3e5f755dc74d76ea85d0717bf75120d759e76.tar.bz2
[svn-r9897] Purpose:
Forgot to update Manifest Solution: Added bin/reconfigure.sh to Manifest.
Diffstat (limited to 'bin')
-rw-r--r--bin/reconfigure.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/bin/reconfigure.sh b/bin/reconfigure.sh
new file mode 100644
index 0000000..6989525
--- /dev/null
+++ b/bin/reconfigure.sh
@@ -0,0 +1,29 @@
+#! bin/sh
+# Reconfigure for HDF5 1.6
+# A simple script to reconfigure autotools for HDF5.
+# The autotools include a reconfigure script, but this script
+# has the paths of autoconf and automake hardcoded to work on HDF
+# machines. Thus is enforces that HDF5 always uses the
+# same versions of autotools.
+# Uses autoconf version 2.59
+# Does not use automake
+
+# Discover which machine this script is being run on.
+# Right now, heping is the only machine with the correct
+# versions of autoconf and automake installed.
+
+HOSTNAME=$(hostname)
+
+if [ "$HOSTNAME" != "heping" ]; then
+ echo "HDF5 can only be reconfigured on heping, sorry."
+else
+
+ # If this is heping, run commands in order
+ echo /usr/local/autoconf-2.59/bin/autoheader
+ /usr/local/autoconf-2.59/bin/autoheader
+ echo /usr/local/autoconf-2.59/bin/autoconf
+ /usr/local/autoconf-2.59/bin/autoconf
+
+fi
+
+exit 0