1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 10:51:48 +02:00

Don't use -f. Do adjust $RM if it's a relative path.

This commit is contained in:
Jim Meyering
1998-01-22 08:32:22 +00:00
parent 14a2593daf
commit d5494d57f5

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# Make sure that rm -rf '' fails.
# On SunOS 4.1.3, running rm -rf '' in a nonempty directory may
# Make sure that rm -r '' fails.
# On SunOS 4.1.3, running rm -r '' in a nonempty directory may
# actually remove files with names of entries in the current directory
# but relative to `/' rather than relative to the current directory.
@@ -14,6 +14,13 @@ fi
tmp=t-rm.$$
# We're going to run RM from a subdir.
# Prepend ../ if $RM is a relative file name.
case $RM in
/*) ;;
*/*) RM=../$RM
esac
test_failure=0
mkdir $tmp || test_failure=1
@@ -24,7 +31,7 @@ fi
fail=0
cd $tmp
$RM -rf '' > /dev/null 2>&1 && fail=1
$RM -r '' > /dev/null 2>&1 && fail=1
cd ..
rm -rf $tmp