From 148c5e296f6c66d439fc525480957af5f98b3241 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 16 Mar 2013 12:30:32 +0000 Subject: [PATCH] Rename environment variable to DEAL_II_DIFF. git-svn-id: https://svn.dealii.org/trunk@28921 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Makefile.rules b/tests/Makefile.rules index 2a5e082c38..10824a7bc5 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -21,12 +21,12 @@ verbose = off # on the command line to use a different mail agent or to tunnel through ssh. # The mail program takes a single argument, which is the mail address for tests # The contents of the mail will be provided on STDIN -MAIL=mail +MAIL = mail -#this lets you overwrite the diff tool for comparisons. -#recommended environment setting: -#export DEALII_DIFF="numdiff -a 1e-6 -q" -DEALII_DIFF?=diff +# this lets you overwrite the diff tool for comparisons. +# recommended environment setting: +# export DEAL_II_DIFF="numdiff -a 1e-6 -q" +DEAL_II_DIFF ?= diff PLATFORM = $(TARGET)+$(GXX-VERSION:intel_%=%) PLATFORM-HIERARCHY = $(shell $(PERL) ../hierarchy.pl $(PLATFORM)) @@ -128,9 +128,9 @@ endif if test -f $$testname/cmp/$$i ; then \ cmpfile_found=yes ; \ if test "x$(verbose)" = "xon" ; then \ - cmd="$(DEALII_DIFF) $(DIFFOPT) $< $$testname/cmp/$$i" ; \ + cmd="$(DEAL_II_DIFF) $(DIFFOPT) $< $$testname/cmp/$$i" ; \ else \ - cmd="$(DEALII_DIFF) $< $$testname/cmp/$$i > /dev/null" ; \ + cmd="$(DEAL_II_DIFF) $< $$testname/cmp/$$i > /dev/null" ; \ fi ; \ if eval $$cmd ; then \ echo '=====OK============' $@ ; \ -- 2.39.5