From 29b3e5f755dc74d76ea85d0717bf75120d759e76 Mon Sep 17 00:00:00 2001 From: James Laird Date: Mon, 31 Jan 2005 15:55:31 -0500 Subject: [svn-r9897] Purpose: Forgot to update Manifest Solution: Added bin/reconfigure.sh to Manifest. --- MANIFEST | 1 + bin/reconfigure.sh | 29 +++++++++++++++++++++++++++++ reconfigure.sh | 29 ----------------------------- 3 files changed, 30 insertions(+), 29 deletions(-) create mode 100644 bin/reconfigure.sh delete mode 100644 reconfigure.sh diff --git a/MANIFEST b/MANIFEST index 41f0345..6907afe 100644 --- a/MANIFEST +++ b/MANIFEST @@ -36,6 +36,7 @@ ./bin/locate_sw ./bin/ltmain.sh ./bin/mkdirs +./bin/reconfigure.sh _DO_NOT_DISTRIBUTE_ ./bin/release ./bin/runtest _DO_NOT_DISTRIBUTE_ ./bin/snapshot 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 diff --git a/reconfigure.sh b/reconfigure.sh deleted file mode 100644 index 6989525..0000000 --- a/reconfigure.sh +++ /dev/null @@ -1,29 +0,0 @@ -#! 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 -- cgit v0.12