From: wolf Date: Wed, 11 Apr 2001 09:23:52 +0000 (+0000) Subject: Fix one more bug. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0f22ca20ac086470c61d15b983bbaebd9a1e859;p=dealii-svn.git Fix one more bug. git-svn-id: https://svn.dealii.org/trunk@4427 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile.rules b/tests/Makefile.rules index a6531c9f73..91d14e1fb5 100644 --- a/tests/Makefile.rules +++ b/tests/Makefile.rules @@ -44,8 +44,8 @@ verbose = off %.check : %.output - @echo '=====Checking======' $< ; - @if test "x$verbose" = "xon" ; then \ + @echo '=====Checking======' $< + @if test "x$(verbose)" = "xon" ; then \ cmd="diff $< $(patsubst %.output,%.checked, $<)" ; \ else \ cmd="diff $< $(patsubst %.output,%.checked, $<) > /dev/null" ; \ @@ -55,7 +55,7 @@ verbose = off touch $@ ; \ else \ echo '+++++Error+++++++++' $@ ; \ - if test "x$stop_on_error" = "xon" ; then \ + if test "x$(stop_on_error)" = "xon" ; then \ false ; \ fi ; \ fi