From: Ralf Wildenhues Date: Tue, 6 Jun 2006 20:31:55 +0000 (+0000) Subject: * lib/freeze.mk: Quiet check-forbidden-patterns so the string X-Git-Tag: AUTOCONF-2.60~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b022ff9eb6c566aa2b2ee87fac894c874355422;p=thirdparty%2Fautoconf.git * lib/freeze.mk: Quiet check-forbidden-patterns so the string "ERROR" only shows up in "make check" output if there is an error. --- diff --git a/ChangeLog b/ChangeLog index d2493d7a3..5de87bdf9 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 52d56f291..62a7ed077 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 7bf8f0a79..ecb9dc688 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 13231f8b8..6cb4dd66d 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 9efb9d17f..83193c074 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 c106fe7e9..1a269670a 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 0dcc2b5da..152607bbe 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 46e733958..c4380c501 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; \