From c1aabf84e6493c09d30fb535485124e91fcc4109 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 20 Jun 2008 11:05:57 +0200 Subject: make "make syntax-check" quieter * maint.mk (po-check, makefile-check, sc_proper_name_utf8_requires_ICONV): Add "@" prefix. --- maint.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'maint.mk') diff --git a/maint.mk b/maint.mk index 5ba7b286c..0a82a9902 100644 --- a/maint.mk +++ b/maint.mk @@ -469,7 +469,7 @@ sc_immutable_NEWS: # Each program that uses proper_name_utf8 must link with # one of the ICONV libraries. sc_proper_name_utf8_requires_ICONV: - progs=$$(grep -l 'proper_name_utf8 ''("' $$($(VC_LIST_EXCEPT)));\ + @progs=$$(grep -l 'proper_name_utf8 ''("' $$($(VC_LIST_EXCEPT)));\ if test "x$$progs" != x; then \ fail=0; \ for p in $$progs; do \ @@ -545,7 +545,7 @@ check-AUTHORS: # not @...@ in Makefile.am, now that we can rely on automake # to emit a definition for each substituted variable. makefile-check: - grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \ + @grep -nE '@[A-Z_0-9]+@' `find . -name Makefile.am` \ && { echo '$(ME): use $$(...), not @...@' 1>&2; exit 1; } || : news-date-check: NEWS @@ -575,7 +575,7 @@ m4-check: # Verify that all source files using _() are listed in po/POTFILES.in. # FIXME: don't hard-code file names below; use a more general mechanism. po-check: - if test -f po/POTFILES.in; then \ + @if test -f po/POTFILES.in; then \ grep -E -v '^(#|$$)' po/POTFILES.in \ | grep -v '^src/false\.c$$' | sort > $@-1; \ files=; \ -- cgit v1.2.3-54-g00ecf