diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:22:51 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:22:51 (GMT) |
commit | 374f8f9da5cbe8ad9523f600989560dc110de40f (patch) | |
tree | 4a31eebaf31eda6be264859d48c6a9bc59864051 /bin/reconfigure | |
parent | e012505802452518fff2cb17bfbb546a702ac9a9 (diff) | |
download | hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.zip hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.tar.gz hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.tar.bz2 |
[svn-r16096] 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/reconfigure')
-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}` |