]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Sat, 16 Aug 1997 17:39:59 +0000 (17:39 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 16 Aug 1997 17:39:59 +0000 (17:39 +0000)
tests/mkdir/p-1

index 73d62c38bf00e096451539ba13c434061bee748c..dc6fdf6b085401a4468f350c3fe9477b107dc76a 100755 (executable)
@@ -11,14 +11,14 @@ if test "$VERBOSE" = yes; then
   $MKDIR --version
 fi
 
-tmp=$TMPDIR/t-mkdir.$$/a/b/c
-temp_files=$tmp
-rm -rf $temp_files
+temp_dir=$TMPDIR/t-mkdir.$$
+tmp=$temp_dir/a/b/c
+rm -rf $temp_dir
 
 $MKDIR --parents $tmp || fail=1
 
 test -d $tmp || fail=1
 
-rm -rf $temp_files
+rm -rf $temp_dir
 
 exit $fail