diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/reconfigure.sh | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/bin/reconfigure.sh b/bin/reconfigure.sh index cc5addb..41da76d 100644 --- a/bin/reconfigure.sh +++ b/bin/reconfigure.sh @@ -6,27 +6,25 @@ # same versions of autotools. # Uses automake version 1.6.3 # Uses autoconf version 2.59 +# Includes macros from libtool version 1.4.2 -# 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. +# The autotools live in AFS, so as long as their paths don't change +# and this machine has the right version of m4, this script should +# be able to run the autotools. -HOSTNAME=$(hostname) -if [ "$HOSTNAME" != "heping" ]; then - echo "HDF5 can only be reconfigured on heping, sorry." -else + # Run commands in order + echo /afs/ncsa/projects/hdf/packages/automake_1.6.3/bin/aclocal -I /afs/ncsa/projects/hdf/packages/libtool-1.4.2/Linux_2.4/share/aclocal + /afs/ncsa/projects/hdf/packages/automake_1.6.3/bin/aclocal -I /afs/ncsa/projects/hdf/packages/libtool-1.4.2/Linux_2.4/share/aclocal - # If this is heping, run commands in order - echo /usr/bin/aclocal - /usr/bin/aclocal - echo /usr/local/autoconf-2.59/bin/autoheader - /usr/local/autoconf-2.59/bin/autoheader - echo /usr/bin/automake --foreign - /usr/bin/automake --foreign - echo /usr/local/autoconf-2.59/bin/autoconf - /usr/local/autoconf-2.59/bin/autoconf + echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/bin/autoheader + /afs/ncsa/projects/hdf/packages/autoconf_2.59/bin/autoheader + + echo /afs/ncsa/projects/hdf/packages/automake_1.6.3/bin/automake --foreign + /afs/ncsa/projects/hdf/packages/automake_1.6.3/bin/automake --foreign + + echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/bin/autoconf + /afs/ncsa/projects/hdf/packages/autoconf_2.59/bin/autoconf -fi exit 0 |