diff options
Diffstat (limited to 'bin/reconfigure')
-rwxr-xr-x | bin/reconfigure | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/bin/reconfigure b/bin/reconfigure index c739172..29a9b11 100755 --- a/bin/reconfigure +++ b/bin/reconfigure @@ -4,9 +4,7 @@ # 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 automake version 1.6.3 # Uses autoconf version 2.59 -# Includes macros from libtool version 1.4.2 # 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 @@ -14,17 +12,18 @@ # Run commands in order - echo /afs/ncsa/projects/hdf/packages/automake_1.6.3/Linux_2.4/bin/aclocal -I /afs/ncsa/projects/hdf/packages/libtool_1.5.14/Linux_2.4/share/aclocal - /afs/ncsa/projects/hdf/packages/automake_1.6.3/Linux_2.4/bin/aclocal -I /afs/ncsa/projects/hdf/packages/libtool_1.5.14/Linux_2.4/share/aclocal - echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoheader /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoheader - echo /afs/ncsa/projects/hdf/packages/automake_1.6.3/Linux_2.4/bin/automake --foreign - /afs/ncsa/projects/hdf/packages/automake_1.6.3/Linux_2.4/bin/automake --foreign - echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf + # Run autoconf on c++ and fortran configure.in files, too + echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf -o c++/configure c++/configure.in + /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf -o c++/configure c++/configure.in + + echo /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf -o fortran/configure -Ifortran fortran/configure.in + /afs/ncsa/projects/hdf/packages/autoconf_2.59/Linux_2.4/bin/autoconf -o fortran/configure -Ifortran fortran/configure.in + exit 0 |