]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: silence some syntax-check rules
authorJim Meyering <meyering@redhat.com>
Thu, 29 Jan 2009 09:44:25 +0000 (10:44 +0100)
committerJim Meyering <meyering@redhat.com>
Thu, 29 Jan 2009 12:31:15 +0000 (13:31 +0100)
* cfg.mk (sc_strftime_check): Silence the rule.
(sc_tight_scope): Likewise.
* src/Makefile.am (check-AUTHORS): Likewise.

cfg.mk
src/Makefile.am

diff --git a/cfg.mk b/cfg.mk
index 8266afe906266c82e14cb97e6fc2dcfbf4f03739..0e42042b3665750c36841c68ffee973dcca8b4e5 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -1,5 +1,5 @@
 # Customize maint.mk                           -*- makefile -*-
-# Copyright (C) 2003-2008 Free Software Foundation, Inc.
+# Copyright (C) 2003-2009 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -165,7 +165,7 @@ sc_sun_os_names:
            exit 1; } || :
 
 sc_tight_scope:
-       $(MAKE) -C src $@
+       @$(MAKE) -C src $@
 
 # Perl-based tests used to exec perl from a #!/bin/sh script.
 # Now they all start with #!/usr/bin/perl and the portability
@@ -183,7 +183,7 @@ sc_no_exec_perl_coreutils:
 # which date accepts but GNU strftime does not.
 extract_char = sed 's/^[^%][^%]*%\(.\).*/\1/'
 sc_strftime_check:
-       if test -f $(srcdir)/src/date.c; then                           \
+       @if test -f $(srcdir)/src/date.c; then                          \
          grep '^  %.  ' $(srcdir)/src/date.c | sort                    \
            | $(extract_char) > $@-src;                                 \
          { echo N;                                                     \
index 907b9e79970239643a20a972f24d851535a9592b..b88db6bdcb9cf068790a995fb7180083814980cf 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
 
-## Copyright (C) 1990, 1991, 1993-2008 Free Software Foundation, Inc.
+## Copyright (C) 1990, 1991, 1993-2009 Free Software Foundation, Inc.
 
 ## This program is free software: you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -382,8 +382,8 @@ au_dotdot = authors-dotdot
 au_actual = authors-actual
 .PHONY: check-AUTHORS
 check-AUTHORS: $(all_programs)
-       rm -f $(au_actual) $(au_dotdot)
-       for i in `ls $(all_programs) | sed -e 's,$(EXEEXT)$$,,' \
+       @rm -f $(au_actual) $(au_dotdot)
+       @for i in `ls $(all_programs) | sed -e 's,$(EXEEXT)$$,,' \
            | $(ASSORT) -u`; do                         \
          test "$$i" = '[' && continue;                 \
          exe=$$i;                                      \
@@ -392,12 +392,12 @@ check-AUTHORS: $(all_programs)
          elif test "$$i" = test; then                  \
            exe='[';                                    \
          fi;                                           \
-         LC_ALL=en_US.UTF-8 ./$$exe --version                  \
+         LC_ALL=en_US.UTF-8 ./$$exe --version          \
            | perl -0 -pi -e 's/,\n/, /gm'              \
            |sed -n '/Written by /{ s//'"$$i"': /; s/,* and /, /; s/\.$$//; p; }'; \
        done > $(au_actual)
-       sed -n '/^[^ ][^ ]*:/p' $(top_srcdir)/AUTHORS > $(au_dotdot)
-       diff $(au_actual) $(au_dotdot) && rm -f $(au_actual) $(au_dotdot)
+       @sed -n '/^[^ ][^ ]*:/p' $(top_srcdir)/AUTHORS > $(au_dotdot)
+       @diff $(au_actual) $(au_dotdot) && rm -f $(au_actual) $(au_dotdot)
 
 # Extract the list of authors from each file.
 sed_filter = s/^ *//;s/N_ (//;s/^"//;s/")*$$//