From: Rafael Garcia-Suarez Date: Mon, 5 Jan 2009 13:11:00 +0000 (+0100) Subject: "rm -f" better in "make clean" targets X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ff3463136509252c393256a31eb1c75bcd50b5f2;p=p5sagit%2Fp5-mst-13.2.git "rm -f" better in "make clean" targets It always succeeds and does not warn. --- diff --git a/Makefile.SH b/Makefile.SH index 6d6ed31..7773f09 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -1223,8 +1223,7 @@ _tidy: -cd pod; $(LDLIBPTH) $(MAKE) clean -cd utils; $(LDLIBPTH) $(MAKE) clean -cd x2p; $(LDLIBPTH) $(MAKE) clean - -rm lib/Config_git.pl - -rm git_version.h + -rm -f lib/Config_git.pl git_version.h -@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) $(nonxs_ext) ; do \ $(LDLIBPTH) sh ext/util/make_ext clean $$x MAKE=$(MAKE) ; \ done