summaryrefslogtreecommitdiffstats
path: root/bin/h5vers
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-02-28 16:24:32 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-02-28 16:24:32 (GMT)
commit08df46ab55d8a2f92e19af17ca6264e8406a2a0a (patch)
tree3a6f4b588c4d3f72feae22204f6276df7622bbd3 /bin/h5vers
parent51d7ba738f1d27af0518514b4a0782d7059f97dc (diff)
downloadhdf5-08df46ab55d8a2f92e19af17ca6264e8406a2a0a.zip
hdf5-08df46ab55d8a2f92e19af17ca6264e8406a2a0a.tar.gz
hdf5-08df46ab55d8a2f92e19af17ca6264e8406a2a0a.tar.bz2
[svn-r10104] Purpose:
Bug fix Description: h5vers would spit out the output that reconfigure script produced. Solution: Sent output from reconfigure to /dev/null. h5vers is now quiet as before. Platforms tested: verbena, eirene, heping
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 26f8339..508ec3d 100755
--- a/bin/h5vers
+++ b/bin/h5vers
@@ -292,9 +292,9 @@ sub gen_configure {
$conf =~ /^(.*?)\/?configure.in$/;
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");
}
}