summaryrefslogtreecommitdiff
path: root/cfg.mk
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2010-02-18 08:38:30 +0000
committerPádraig Brady <P@draigBrady.com>2010-02-19 11:41:19 +0000
commit0b5bd805bda0346dd6ed777826da39d5571115a0 (patch)
treeeb2986aef590038c4b743af0e493b415b85f9a61 /cfg.mk
parentf5268e2749d5649a3364550ef54bf31d9aa9c4e1 (diff)
downloadcoreutils-0b5bd805bda0346dd6ed777826da39d5571115a0.tar.xz
maint: clean up the output from syntax-check rules
* cfg.mk (sc_tight_scope): Pass the -s (silent) flag to `make` so that it doesn't report about calling sub makes. (sc_check-AUTHORS): Likewise. (sc_strftime_check): Don't display stderr from `info`. * src/Makefile.am (sc_tight_scope): Don't annotate with "GEN". (sc_check-AUTHORS): Likewise.
Diffstat (limited to 'cfg.mk')
-rw-r--r--cfg.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/cfg.mk b/cfg.mk
index 3f2e6d325..71f3d85a4 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -165,11 +165,11 @@ sc_sun_os_names:
ALL_RECURSIVE_TARGETS += sc_tight_scope
sc_tight_scope:
- @$(MAKE) -C src $@
+ @$(MAKE) -s -C src $@
ALL_RECURSIVE_TARGETS += sc_check-AUTHORS
sc_check-AUTHORS:
- @$(MAKE) -C src $@
+ @$(MAKE) -s -C src $@
# Option descriptions should not start with a capital letter
# One could grep source directly as follows:
@@ -218,7 +218,7 @@ sc_strftime_check:
grep '^ %. ' $(srcdir)/src/date.c | sort \
| $(extract_char) > $@-src; \
{ echo N; \
- info libc date calendar format | grep '^ `%.'\' \
+ info libc date calendar format 2>/dev/null|grep '^ `%.'\'\
| $(extract_char); } | sort > $@-info; \
diff -u $@-src $@-info || exit 1; \
rm -f $@-src $@-info; \