diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-02-05 18:31:21 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-02-05 18:31:21 (GMT) |
commit | e8013712b23405b02e6e4d2b97b5d535558d307f (patch) | |
tree | 9947631899e7f7f35a064d43c8b7555d0166f91b /autogen.sh | |
parent | ba739af91fc0d94e69e63348747c3ed880f887c1 (diff) | |
download | hdf5-e8013712b23405b02e6e4d2b97b5d535558d307f.zip hdf5-e8013712b23405b02e6e4d2b97b5d535558d307f.tar.gz hdf5-e8013712b23405b02e6e4d2b97b5d535558d307f.tar.bz2 |
[svn-r26130] Updated autogen.sh to try glibtoolize if libtoolize is
not found. Allows reconfiguration on OS-X.
Part of: HDFFV-9120
Untested since we have no suitable OS-X machines
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -218,10 +218,9 @@ PATH=${AUTOCONF_DIR}:${M4_DIR}:$PATH HDF5_LIBTOOLIZE="${LIBTOOL_DIR}/libtoolize" # OS-X uses glibtoolize, so if libtoolize does not exist try that -# NEED TO TEST THIS ON OS-X BEFORE MAKING IT ACTIVE -#if test ! -e ${HDF5_LIBTOOLIZE} ; then -# HDF5_LIBTOOLIZE="${LIBTOOL_DIR}/glibtoolize" -#fi +if test ! -e ${HDF5_LIBTOOLIZE} ; then + HDF5_LIBTOOLIZE="${LIBTOOL_DIR}/glibtoolize" +fi # Run autotools in order |