From 7b022ff9eb6c566aa2b2ee87fac894c874355422 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Tue, 6 Jun 2006 20:31:55 +0000 Subject: [PATCH] * lib/freeze.mk: Quiet check-forbidden-patterns so the string "ERROR" only shows up in "make check" output if there is an error. --- ChangeLog | 6 ++++++ bin/Makefile.in | 2 +- lib/autoconf/Makefile.in | 2 +- lib/autoscan/Makefile.in | 2 +- lib/autotest/Makefile.in | 2 +- lib/freeze.mk | 2 +- lib/m4sugar/Makefile.in | 2 +- tests/Makefile.in | 2 +- 8 files changed, 13 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index d2493d7a..5de87bdf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-06-06 Tim Rice . + + * lib/freeze.mk: Quiet check-forbidden-patterns so the string + "ERROR" only shows up in "make check" output if there is an + error. + 2006-06-06 Eric Blake * tests/tools.at (automatically allowed tokens): Fix typo. diff --git a/bin/Makefile.in b/bin/Makefile.in index 52d56f29..62a7ed07 100644 --- a/bin/Makefile.in +++ b/bin/Makefile.in @@ -466,7 +466,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/lib/autoconf/Makefile.in b/lib/autoconf/Makefile.in index 7bf8f0a7..ecb9dc68 100644 --- a/lib/autoconf/Makefile.in +++ b/lib/autoconf/Makefile.in @@ -476,7 +476,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/lib/autoscan/Makefile.in b/lib/autoscan/Makefile.in index 13231f8b..6cb4dd66 100644 --- a/lib/autoscan/Makefile.in +++ b/lib/autoscan/Makefile.in @@ -393,7 +393,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/lib/autotest/Makefile.in b/lib/autotest/Makefile.in index 9efb9d17..83193c07 100644 --- a/lib/autotest/Makefile.in +++ b/lib/autotest/Makefile.in @@ -470,7 +470,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/lib/freeze.mk b/lib/freeze.mk index c106fe7e..1a269670 100644 --- a/lib/freeze.mk +++ b/lib/freeze.mk @@ -127,7 +127,7 @@ GREP = @GREP@ ## -------------------------------- ## check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/lib/m4sugar/Makefile.in b/lib/m4sugar/Makefile.in index 0dcc2b5d..152607bb 100644 --- a/lib/m4sugar/Makefile.in +++ b/lib/m4sugar/Makefile.in @@ -485,7 +485,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \ diff --git a/tests/Makefile.in b/tests/Makefile.in index 46e73395..c4380c50 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -436,7 +436,7 @@ $(build_libdir)/m4sugar/version.m4: cd $(build_libdir)/m4sugar && $(MAKE) $(AM_MAKEFLAGS) version.m4 check-forbidden-patterns: - if (cd $(srcdir) && \ + @if (cd $(srcdir) && \ $(GREP) $(forbidden_patterns) $(forbidden_patterns_files)) \ >forbidden.log; then \ echo "ERROR: forbidden patterns were found:" >&2; \