From 9c9fca91fa2eeba508843b7b643c8a720bf0613f Mon Sep 17 00:00:00 2001 From: Ross Johnson Date: Thu, 22 Dec 2016 19:34:07 +1100 Subject: [PATCH] Ignore errors when grep does not match anything --- GNUmakefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 498ce45d..1b31d68f 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -238,8 +238,8 @@ all-tests: $(MAKE) realclean GCE-static cd tests && $(MAKE) clean GCE-static $(TEST_ENV) $(MAKE) realclean - @ $(GREP) Passed *.log | $(COUNT_UNIQ) - @ $(GREP) FAILED *.log + @ - $(GREP) Passed *.log | $(COUNT_UNIQ) + @ - $(GREP) FAILED *.log all-tests-cflags: $(MAKE) all-tests __PTW32_FLAGS="-Wall -Wextra"