diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-15 16:10:15 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-10-15 16:10:15 (GMT) |
commit | b353fb8b5a51f8ba853df9512d7ab57e66f86395 (patch) | |
tree | be5b09a1593920153b1cbd1e14ae6a00d1f342ce /tools/h5repack/h5repack.sh.in | |
parent | 122b938cbf1a48a384cda69b0943489afa0f2dca (diff) | |
download | hdf5-b353fb8b5a51f8ba853df9512d7ab57e66f86395.zip hdf5-b353fb8b5a51f8ba853df9512d7ab57e66f86395.tar.gz hdf5-b353fb8b5a51f8ba853df9512d7ab57e66f86395.tar.bz2 |
[svn-r15871] Eliminate -c option and make that behavior the default and return 2 instead of -1 on error status
Tested: windows, 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 72e4414..422c8dd 100755 --- a/tools/h5repack/h5repack.sh.in +++ b/tools/h5repack/h5repack.sh.in @@ -93,9 +93,9 @@ DIFFTEST() { VERIFY $@ if [ "`uname -s`" = "TFLOPS O/S" ]; then - $RUNSERIAL $H5DIFF_BIN -q -c $@ + $RUNSERIAL $H5DIFF_BIN -q $@ else - $RUNSERIAL $H5DIFF_BIN -q -c "$@" + $RUNSERIAL $H5DIFF_BIN -q "$@" fi RET=$? if [ $RET != 0 ] ; then |