Revert the previous commit r1.219 and use "rm -f" again
authorFabian Keil <fk@fabiankeil.de>
Tue, 5 Feb 2013 14:01:38 +0000 (14:01 +0000)
committerFabian Keil <fk@fabiankeil.de>
Tue, 5 Feb 2013 14:01:38 +0000 (14:01 +0000)
"rm -f" wasn't actually used to force deletion, but to suppress complaints
about non-existant files. While the use of -f is still dubious, simply
dropping it breaks things like the clean target and thus isn't a solution.

GNUmakefile.in

index a87b71e..58f8879 100644 (file)
@@ -113,7 +113,7 @@ GZIP_PROG  = gzip
 #ID         = id -u
 ID         = id
 LD         = @CC@
 #ID         = id -u
 ID         = id
 LD         = @CC@
-RM         = rm
+RM         = rm -f
 CP         = cp -f
 RMDIR      = rmdir
 MKDIR      = ./mkinstalldirs
 CP         = cp -f
 RMDIR      = rmdir
 MKDIR      = ./mkinstalldirs