diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-08-01 17:20:21 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-08-01 17:20:21 (GMT) |
commit | 4ce65b85850fd7bd28c36b25619d025611afacce (patch) | |
tree | 830fa0927264338ee1b7c8c4f1bcb9f2275b99c0 /tools/h5stat/testh5stat.sh.in | |
parent | db7a701126c28cb1505be730b215f9a33ab61332 (diff) | |
download | hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.zip hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.tar.gz hdf5-4ce65b85850fd7bd28c36b25619d025611afacce.tar.bz2 |
[svn-r30235] HDFFV-9730: Fix functions for delete to use a specific dir instead of a possibly uninitialized variable.
Diffstat (limited to 'tools/h5stat/testh5stat.sh.in')
-rw-r--r-- | tools/h5stat/testh5stat.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5stat/testh5stat.sh.in b/tools/h5stat/testh5stat.sh.in index b48f327..cbb732c 100644 --- a/tools/h5stat/testh5stat.sh.in +++ b/tools/h5stat/testh5stat.sh.in @@ -151,7 +151,7 @@ CLEAN_TESTFILES_AND_TESTDIR() # skip rm if srcdir is same as destdir # this occurs when build/test performed in source dir and # make cp fail - SDIR=`$DIRNAME $tstfile` + SDIR=$SRC_H5STAT_TESTFILES INODE_SDIR=`$LS -i -d $SDIR | $AWK -F' ' '{print $1}'` INODE_DDIR=`$LS -i -d $TESTDIR | $AWK -F' ' '{print $1}'` if [ "$INODE_SDIR" != "$INODE_DDIR" ]; then |