From: kanschat Date: Sun, 2 Sep 2012 09:07:36 +0000 (+0000) Subject: Ignore when we try to delete nonexisting files X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d18dfd38dc2e64a9a2db575c20f2520822b801f;p=dealii-svn.git Ignore when we try to delete nonexisting files git-svn-id: https://svn.dealii.org/branches/releases/Branch-7-2@26202 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/Makefile b/deal.II/source/Makefile index ba6ba15c31..ca739fd953 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 $@ @$(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 $@ @$(AR) r $@ $(o-files) $(extra-o-files) @$(RANLIB) $@