From ed70e982ed9027123150bc0a1e9fb6af3ca48cf4 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 5 Feb 2013 14:01:38 +0000 Subject: [PATCH] Revert the previous commit r1.219 and use "rm -f" again "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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index a87b71ef..58f88799 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -113,7 +113,7 @@ GZIP_PROG = gzip #ID = id -u ID = id LD = @CC@ -RM = rm +RM = rm -f CP = cp -f RMDIR = rmdir MKDIR = ./mkinstalldirs -- 2.39.2