From 37b534aa51f5daab356d3ca63de2585ea5de25d2 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 3 Sep 2012 07:58:15 +0000 Subject: [PATCH] add missing -f in remove command git-svn-id: https://svn.dealii.org/trunk@26211 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/source/Makefile b/deal.II/source/Makefile index ba6ba15c31..d65507f956 100644 --- a/deal.II/source/Makefile +++ b/deal.II/source/Makefile @@ -154,12 +154,12 @@ endif # rules for static libraries $(LIBDIR)/libdeal_II.g$(static-lib-suffix): $(go-files) $(extra-g.o-files) @echo "=====deal.II==========debug======$(MT)== Linking library: $(@F)" - @rm $@ + @rm -f $@ @$(AR) r $@ $(go-files) $(extra-g.o-files) @$(RANLIB) $@ $(LIBDIR)/libdeal_II$(static-lib-suffix): $(o-files) $(extra-o-files) @echo "=====deal.II==========optimized==$(MT)== Linking library: $(@F)" - @rm $@ + @rm -f $@ @$(AR) r $@ $(o-files) $(extra-o-files) @$(RANLIB) $@ -- 2.39.5