diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:19:10 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:19:10 (GMT) |
commit | f804d204466cc058699955152c97eb69a5e063cf (patch) | |
tree | d2e2c18e144371d6ee611b86536ae21e478b53ea /bin | |
parent | a19434caa09bce8d1d7cdc97911b35b3201c8d4e (diff) | |
download | hdf5-f804d204466cc058699955152c97eb69a5e063cf.zip hdf5-f804d204466cc058699955152c97eb69a5e063cf.tar.gz hdf5-f804d204466cc058699955152c97eb69a5e063cf.tar.bz2 |
[svn-r16095] Purpose: Updating bin/reconfigure script
Updating bin/reconfigure script to point to autotools in /mnt/hdf/packages,
since /home1/packages no longer exists.
Tested: kagiso
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reconfigure | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/reconfigure b/bin/reconfigure index f9fe719..05e52ba 100755 --- a/bin/reconfigure +++ b/bin/reconfigure @@ -41,19 +41,19 @@ LIBTOOL_VERSION="(GNU libtool) 2.2.6" # If paths to autotools are not specified by the user, assume tools are # running on kagiso and set paths accordingly. if test -z ${AUTOCONF}; then - AUTOCONF=/home1/packages/autoconf/autoconf-2.61/bin/autoconf + AUTOCONF=/mnt/hdf/packages/autoconf/autoconf-2.61/bin/autoconf fi if test -z ${AUTOMAKE}; then - AUTOMAKE=/home1/packages/automake/automake-1.10.1/bin/automake-1.10 + AUTOMAKE=/mnt/hdf/packages/automake/automake-1.10.1/bin/automake-1.10 fi if test -z ${AUTOHEADER}; then - AUTOHEADER=/home1/packages/autoconf/autoconf-2.61/bin/autoheader + AUTOHEADER=/mnt/hdf/packages/autoconf/autoconf-2.61/bin/autoheader fi if test -z ${ACLOCAL}; then - ACLOCAL=/home1/packages/automake/automake-1.10.1/bin/aclocal-1.10 + ACLOCAL=/mnt/hdf/packages/automake/automake-1.10.1/bin/aclocal-1.10 fi if test -z ${LIBTOOL}; then - LIBTOOL=/home1/packages/libtool/libtool-2.2.6a/bin/libtool + LIBTOOL=/mnt/hdf/packages/libtool/libtool-2.2.6a/bin/libtool fi # Check version numbers of all autotools against the "correct" versions @@ -84,7 +84,7 @@ if test -z "${LT_VERS}"; then fi # Use the latest version of M4 -PATH=/home1/packages/m4/m4-1.4.7/bin:/home1/packages/m4/m4-1.4.7/share:$PATH +PATH=/mnt/hdf/packages/m4/m4-1.4.7/bin:/mnt/hdf/packages/m4/m4-1.4.7/share:$PATH # Make sure that the tools are in the path. AUTOCONF_DIR=`dirname ${AUTOCONF}` |