diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-28 16:30:28 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-28 16:30:28 (GMT) |
commit | 12068690a76e7f5cedfe7f33770be1422a26d1c6 (patch) | |
tree | 6962498c2e9bff5c3cf6185dd93516e3d1488788 /bin/h5vers | |
parent | 8ab27eb52f8237b0002a2d9ce7a04b2667bbaabc (diff) | |
download | hdf5-12068690a76e7f5cedfe7f33770be1422a26d1c6.zip hdf5-12068690a76e7f5cedfe7f33770be1422a26d1c6.tar.gz hdf5-12068690a76e7f5cedfe7f33770be1422a26d1c6.tar.bz2 |
[svn-r10105] Purpose:
Bug fix
Description:
Turned off reconfigure output in h5vers script.
Platforms tested:
verbena
Diffstat (limited to 'bin/h5vers')
-rwxr-xr-x | bin/h5vers | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -309,9 +309,9 @@ gen_configure("HDF5 C++", $CXX_CONFIGURE) if $CXX_CONFIGURE; # Reconfigure once (which will update all three configure files) if ($1) { - system("cd $1 && bin/reconfigure && rm -rf autom4te.cache"); + system("cd $1 && bin/reconfigure >/dev/null 2>/dev/null && rm -rf autom4te.cache"); } else { - system("bin/reconfigure && rm -rf autom4te.cache"); + system("bin/reconfigure >/dev/null 2>/dev/null && rm -rf autom4te.cache"); } # Print the new version number |