2005-02-05 05:11:33 +08:00
|
|
|
#! /bin/sh
|
2005-02-01 11:17:02 +08:00
|
|
|
# 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 automake version 1.6.3
|
|
|
|
# Uses autoconf version 2.59
|
2005-02-15 05:13:12 +08:00
|
|
|
# Includes macros from libtool version 1.4.2
|
2005-02-01 11:17:02 +08:00
|
|
|
|
2005-02-15 05:13:12 +08:00
|
|
|
# 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.
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
|
2005-02-15 05:13:12 +08:00
|
|
|
# Run commands in order
|
2005-02-24 00:47:00 +08:00
|
|
|
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
|
2005-02-01 11:17:02 +08:00
|
|
|
|
2005-02-21 23:53:19 +08:00
|
|
|
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
|
2005-02-15 05:13:12 +08:00
|
|
|
|
2005-02-21 23:53:19 +08:00
|
|
|
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
|
2005-02-15 05:13:12 +08:00
|
|
|
|
2005-02-21 23:53:19 +08:00
|
|
|
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
|
2005-02-01 11:17:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
exit 0
|