summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-12-19 23:24:52 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-12-19 23:24:52 (GMT)
commitb55a584fd5b3aac6f2514fba41a6182030b497ae (patch)
tree065c2f57d3cabd16be66665403764af06f5abdce /tools
parent63fdb7868593639dd7e06dcff85980ed4b29a8c1 (diff)
parentec4418a75716b7f2ce53e627de28d139b281b545 (diff)
downloadhdf5-b55a584fd5b3aac6f2514fba41a6182030b497ae.zip
hdf5-b55a584fd5b3aac6f2514fba41a6182030b497ae.tar.gz
hdf5-b55a584fd5b3aac6f2514fba41a6182030b497ae.tar.bz2
Merge pull request #2161 in HDFFV/hdf5 from ~DYOUNG/netbsd:develop to develop
* commit 'ec4418a75716b7f2ce53e627de28d139b281b545': In portable shell scripts (using #!/bin/sh) we have to use single square brackets, [ ], instead of the bash-ism double square brackets, [[ ]]. Make this script work on hosts where PERL is not installed at /usr/bin/perl.
Diffstat (limited to 'tools')
-rw-r--r--tools/test/h5dump/testh5dump.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5dump/testh5dump.sh.in b/tools/test/h5dump/testh5dump.sh.in
index 4b85138..dc7d999 100644
--- a/tools/test/h5dump/testh5dump.sh.in
+++ b/tools/test/h5dump/testh5dump.sh.in
@@ -923,7 +923,7 @@ GREPTEST()
cd $TESTDIR
$ENVCMD $RUNSERIAL $DUMPER_BIN -p "$@"
) >$actual 2>$actual_err
- if [[ "$txttype" = "ERRTXT" ]]; then
+ if [ "$txttype" = "ERRTXT" ]; then
$GREP "$expectdata" $actual_err > /dev/null
else
$GREP "$expectdata" $actual > /dev/null