diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-03-22 16:21:49 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-03-22 16:21:49 (GMT) |
commit | 13c9a30beb9e177acffbb5cc5c1601a7d8b6199b (patch) | |
tree | 3af36050943d5814addaf71e16ddfff12a167d63 /tools | |
parent | 8473025b4516fe4658271bb20f4b1a92de81c666 (diff) | |
download | hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.zip hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.gz hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.bz2 |
[svn-r1154] Changes since 19990322
----------------------
./configure.in
./configure [REGENERATED]
./config/commence.in
A few tweaks to the makefile rules for rebuilding makefiles.
./src/H5detect.c
Fixed a really stupid mistake: resetting the signal handler
after a longjmp(). This should fix Bob's SIGBUS on Solaris.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testh5toh4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testh5toh4 b/tools/testh5toh4 index 14809b2..e9b813d 100644 --- a/tools/testh5toh4 +++ b/tools/testh5toh4 @@ -49,7 +49,7 @@ CONVERT() expect=`echo $h4file | $SED -e s/\.hdf/.dmp/` if test "testfiles/tloop.hdf" = "$h4file"; then - $H4DUMP dumpvg $h4file | head -50 > $actual + ($H4DUMP dumpvg $h4file |head -50 >$actual) 2>/dev/null else $H4DUMP dumpvg $h4file > $actual fi @@ -104,7 +104,7 @@ CONVERT() expect=`echo $h4file | $SED -e s/\.hdf/.dmp/` if test "testfiles/tloop.hdf" = "$h4file"; then - $H4DUMP dumpvg $h4file | head -50 > $actual + ($H4DUMP dumpvg $h4file |head -50 >$actual) 2>/dev/null else $H4DUMP dumpvg $h4file > $actual fi |