From: Jim Meyering Date: Wed, 3 May 2000 11:09:07 +0000 (+0000) Subject: use rm, not $RM X-Git-Tag: v4.5.1~5013 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2262fcd90ce9ffaee62972b28c61b59f1d21d10;p=thirdparty%2Fcoreutils.git use rm, not $RM --- diff --git a/tests/rm/r-2 b/tests/rm/r-2 index 2bba1f5c6b..fcb83fd270 100755 --- a/tests/rm/r-2 +++ b/tests/rm/r-2 @@ -1,12 +1,11 @@ #!/bin/sh -: ${RM=rm} test=r-2 : ${TMPDIR=.} if test "$VERBOSE" = yes; then - $RM --version + rm --version set -x fi @@ -34,7 +33,7 @@ EOF # Note that both the expected output (above) and the actual output lines # are sorted, because directory entries may be processed in arbitrary order. fail=0 -$RM --verbose -r $tmp/a | sort > $tmp/$test.O || fail=1 +rm --verbose -r $tmp/a | sort > $tmp/$test.O || fail=1 if test -d $tmp/a; then fail=1