From: wolf Date: Tue, 8 Feb 2000 13:54:54 +0000 (+0000) Subject: Replace `rm' by `rm -f' to suppress warnings. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af10ff47ff3cf665f3db205735deb7d1e1291515;p=dealii-svn.git Replace `rm' by `rm -f' to suppress warnings. git-svn-id: https://svn.dealii.org/trunk@2343 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/Makefile b/deal.II/Makefile index a2af9122a1..b18f5c7961 100644 --- a/deal.II/Makefile +++ b/deal.II/Makefile @@ -130,7 +130,7 @@ TAGS: $(filter-out %/forward_declarations.h, \ clean: clean-base clean-lac clean-dealII clean-doc - -rm TODO TAGS + -rm -f TODO TAGS clean-base: cd $D/base ; $(MAKE) clean diff --git a/deal.II/common/Makefile b/deal.II/common/Makefile index a2af9122a1..b18f5c7961 100644 --- a/deal.II/common/Makefile +++ b/deal.II/common/Makefile @@ -130,7 +130,7 @@ TAGS: $(filter-out %/forward_declarations.h, \ clean: clean-base clean-lac clean-dealII clean-doc - -rm TODO TAGS + -rm -f TODO TAGS clean-base: cd $D/base ; $(MAKE) clean diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile b/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile index 6e0a7d0617..e3fb990842 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/Makefile @@ -70,7 +70,7 @@ step-by-step.sgml: $(example-sgmls) clean: - -rm $(example-htmls) + -rm -f $(example-htmls) # mark the output files as phony, i.e. generate them every time