summaryrefslogtreecommitdiffstats
path: root/bin/h5vers
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-02-25 18:09:19 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-02-25 18:09:19 (GMT)
commitbcb3dd3a217c0a3314c69e06f30843468101b8d8 (patch)
tree5e30afcd9db45faca836a718aeb35cfef8872713 /bin/h5vers
parent76b809dd177127fabd8a22ac5ea36ffb3c5abb4e (diff)
downloadhdf5-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-xbin/h5vers4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/h5vers b/bin/h5vers
index 201b243..26f8339 100755
--- a/bin/h5vers
+++ b/bin/h5vers
@@ -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");
}
}