From: Jim Meyering Date: Tue, 29 Dec 2009 13:31:56 +0000 (+0100) Subject: maint: quiet "make" in doc/ X-Git-Tag: v8.3~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed86ca7c5e4e67b59ce5cb592fef075765c7893a;p=thirdparty%2Fcoreutils.git maint: quiet "make" in doc/ * doc/Makefile.am (constants.texi): Add a use of AM_V_GEN. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 224bcd8fc5..c151333cd1 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -30,13 +30,12 @@ EXTRA_DIST = perm.texi getdate.texi constants.texi fdl.texi AM_MAKEINFOFLAGS = --no-split constants.texi: $(top_srcdir)/src/tail.c $(top_srcdir)/src/shred.c - LC_ALL=C \ - sed -n -e 's/^#define \(DEFAULT_MAX[_A-Z]*\) \(.*\)/@set \1 \2/p' \ - $(top_srcdir)/src/tail.c > t-$@ - LC_ALL=C \ - sed -n -e 's/.*\(DEFAULT_PASSES\)[ =]* \([0-9]*\).*/@set SHRED_\1 \2/p'\ - $(top_srcdir)/src/shred.c >> t-$@ - mv t-$@ $@ + $(AM_V_GEN)LC_ALL=C; export LC_ALL; \ + { sed -n -e 's/^#define \(DEFAULT_MAX[_A-Z]*\) \(.*\)/@set \1 \2/p' \ + $(top_srcdir)/src/tail.c && \ + sed -n -e 's/.*\(DEFAULT_PASSES\)[ =]* \([0-9]*\).*/@set SHRED_\1 \2/p'\ + $(top_srcdir)/src/shred.c; } > t-$@ \ + && mv t-$@ $@ MAINTAINERCLEANFILES = constants.texi