From 7198524cc79ffdf3811393afe2e3c150ad539a97 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 25 Feb 1999 10:18:56 +0000 Subject: [PATCH] Send output of the possibly failing cp command to nirvana. git-svn-id: https://svn.dealii.org/trunk@903 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/Make.forward-declarations | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/Make.forward-declarations b/deal.II/deal.II/Make.forward-declarations index 29647f3b05..b371373523 100644 --- a/deal.II/deal.II/Make.forward-declarations +++ b/deal.II/deal.II/Make.forward-declarations @@ -6,7 +6,8 @@ # - if this is the outermost 'make', then create a file $@.old. # if the forward declaration file $@ already exists, then copy # it over, otherwise leave it empty. this way, we always have -# a file to run diff on +# a file to run diff on. send the output of the copy command +# (which may fail) to nirvana. # - write the forward declarations for the presently available # header files to $@.new # - we would like to compare the output of the script generating @@ -28,7 +29,7 @@ $(forward-declarations): $(filter-out %forward-declarations%,$(h-files)) ifeq (0,${MAKELEVEL}) @echo ============================ Checking $@ @touch $@.old - -@cp $@ $@.old + -@cp $@ $@.old > /dev/null 2>&1 @perl $D/deal.II/Make_forward_declarations $(filter-out %forward-declarations.h,$(h-files)) > $@.new @make --silent $@ @rm $@.old $@.new -- 2.39.5