diff options
author | Jim Meyering <jim@meyering.net> | 2003-08-16 20:46:47 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-08-16 20:46:47 +0000 |
commit | 6835a10298c265b299d251896ea1dddd93a97fb8 (patch) | |
tree | 409ac013c0a0611a56336303087227d17ec1ec86 /man | |
parent | 16262f2ce74624a40e06af4de8d0da1ecaf5566c (diff) | |
download | coreutils-6835a10298c265b299d251896ea1dddd93a97fb8.tar.xz |
use only -f, not -rf
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 22c7f36ec..2cc975884 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -125,7 +125,7 @@ mapped_name = `echo $*|sed 's/install/ginstall/; s/test/[/'` # That is necessary to avoid failures for programs that are also shell built-in # functions like echo, false, printf, pwd. .x.1: - rm -rf $@ + rm -f $@ @echo "Updating man page $@"; \ mkdir $t; \ (cd $t && $(LN_S) ../../src/$(mapped_name)$(EXEEXT) $*$(EXEEXT)); \ |