diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-25 18:09:19 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-25 18:09:19 (GMT) |
commit | bcb3dd3a217c0a3314c69e06f30843468101b8d8 (patch) | |
tree | 5e30afcd9db45faca836a718aeb35cfef8872713 /bin/h5vers | |
parent | 76b809dd177127fabd8a22ac5ea36ffb3c5abb4e (diff) | |
download | hdf5-bcb3dd3a217c0a3314c69e06f30843468101b8d8.zip hdf5-bcb3dd3a217c0a3314c69e06f30843468101b8d8.tar.gz hdf5-bcb3dd3a217c0a3314c69e06f30843468101b8d8.tar.bz2 |
[svn-r10085] Purpose:
Bug fix
Description:
h5vers script called automake without using bin/reconfigure
Solution:
Altered h5vers script to use bin/reconfigure
Also:
***
CHANGED NAME OF reconfigure.sh TO reconfigure !
***
This matches the other scripts in the bin/ directory. Also changed
permissions on reconfigure so it can be executed.
Platforms tested:
eirene
Misc. update:
Diffstat (limited to 'bin/h5vers')
-rwxr-xr-x | bin/h5vers | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -292,9 +292,9 @@ sub gen_configure { $conf =~ /^(.*?)\/?configure.in$/; if ($1) { - system("cd $1 && autoconf && rm -rf autom4te.cache"); + system("cd $1 && bin/reconfigure && rm -rf autom4te.cache"); } else { - system("autoconf && rm -rf autom4te.cache"); + system("bin/reconfigure && rm -rf autom4te.cache"); } } |