diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-14 14:26:46 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-14 14:26:46 (GMT) |
commit | 6dca1de06ae04fe7d52673d420a2dcbbca9bac12 (patch) | |
tree | 1cb17d6de01ca477093b2ce3a77b5879418d0568 /tools/h5repack/h5repack.sh.in | |
parent | 5c16c09f9165806671a160e963d02509cd3434f1 (diff) | |
download | hdf5-6dca1de06ae04fe7d52673d420a2dcbbca9bac12.zip hdf5-6dca1de06ae04fe7d52673d420a2dcbbca9bac12.tar.gz hdf5-6dca1de06ae04fe7d52673d420a2dcbbca9bac12.tar.bz2 |
[svn-r14260] bug fix: modified the h5repack script to call h5diff with its brand new syntax
tested: linux
Diffstat (limited to 'tools/h5repack/h5repack.sh.in')
-rwxr-xr-x | tools/h5repack/h5repack.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in index a28ce15..01f7c10 100755 --- a/tools/h5repack/h5repack.sh.in +++ b/tools/h5repack/h5repack.sh.in @@ -94,9 +94,9 @@ DIFFTEST() { VERIFY $@ if [ "`uname -s`" = "TFLOPS O/S" ]; then - $RUNSERIAL $H5DIFF_BIN $@ -q + $RUNSERIAL $H5DIFF_BIN -q $@ else - $RUNSERIAL $H5DIFF_BIN "$@" -q + $RUNSERIAL $H5DIFF_BIN -q "$@" fi RET=$? if [ $RET != 0 ] ; then |