From 55cd514ca380d5ad4d3a72accc8d4f4c6f131850 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 12 Mar 2010 11:57:09 +0000 Subject: [PATCH] check.mak: fix 'make check-valgrind' Don't use @ on a continuation line, that will lead to syntax errors. Also replace some spaces with tabs. --- check.mak | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/check.mak b/check.mak index 4a13504..0abd609 100644 --- a/check.mak +++ b/check.mak @@ -107,13 +107,13 @@ forever: $(TESTS) valgrind: $(TESTS) @echo "Valgrinding tests ..." @failed=0; \ - @for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(TESTS)); do \ + for t in $(filter-out $(VALGRIND_TESTS_DISABLE),$(TESTS)); do \ $(MAKE) $$t.valgrind; \ if test "$$?" -ne 0; then \ - echo "Valgrind error for test $$t"; \ + echo "Valgrind error for test $$t"; \ failed=`expr $$failed + 1`; \ whicht="$$whicht $$t"; \ - fi; \ + fi; \ done; \ if test "$$failed" -ne 0; then \ echo "$$failed tests had leaks or errors under valgrind:"; \ -- 2.7.4