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/misc | |
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/misc')
-rw-r--r-- | tools/misc/testh5mkgrp.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/misc/testh5mkgrp.sh.in b/tools/misc/testh5mkgrp.sh.in index 190e824..a0413e1 100644 --- a/tools/misc/testh5mkgrp.sh.in +++ b/tools/misc/testh5mkgrp.sh.in @@ -117,7 +117,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_H5MKGRP_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 |