From ef1222f8769e1ab4eba8342d36b188d19a80d85f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 11 Apr 2001 09:23:52 +0000 Subject: [PATCH] Fix one more bug. git-svn-id: https://svn.dealii.org/trunk@4427 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/Makefile.rules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.5