From: markus schnalke Date: Tue, 27 Mar 2012 11:55:34 +0000 (+0200) Subject: Suppress echoing of man page build lines. X-Git-Tag: mmh-thesis-end~142 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=89500484352c5b5bf741879db73b1ed0c84770da Suppress echoing of man page build lines. One of them says "warning", and it's handy to check that build output doesn't say that. Pulled in from nmh. Thanks to David Levine. --- diff --git a/man/Makefile.in b/man/Makefile.in index 27c67cb..e7f58be 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -30,7 +30,7 @@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ SED = sed -SEDMAN = $(SED) -f man.sed $< > $@ +SEDMAN = @$(SED) -f man.sed $< > $@ .SUFFIXES: .SUFFIXES: .man1 .man5 .man7 .man8 \ @@ -87,31 +87,31 @@ $(MAN1) $(MAN5) $(MAN7) $(MAN8): man.sed # create the sed file for building man pages man.sed: Makefile - echo 's,%nmhwarning%,THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT.,g' > $@ - echo 's,%nmhversion%,mmh-$(VERSION),g' >> $@ - echo 's,%nmhdate%,$(DATE),g' >> $@ - echo 's,%bindir%,$(bindir),g' >> $@ - echo 's,%etcdir%,$(etcdir),g' >> $@ - echo 's,%libdir%,$(libdir),g' >> $@ - echo 's,%mandir%,$(mandir),g' >> $@ - echo 's,%mailspool%,$(mailspool),g' >> $@ - echo 's,%sendmailpath%,$(sendmailpath),g' >> $@ - echo 's,%manext1%,$(manext1),g' >> $@ - echo 's,%manext5%,$(manext5),g' >> $@ - echo 's,%manext7%,$(manext7),g' >> $@ - echo 's,%manext8%,$(manext8),g' >> $@ - echo '/%components%/r $(top_srcdir)/etc/components' >> $@ - echo ' s,%components%,,g' >> $@ - echo '/%distcomps%/r $(top_srcdir)/etc/distcomps' >> $@ - echo ' s,%distcomps%,,g' >> $@ - echo '/%forwcomps%/r $(top_srcdir)/etc/forwcomps' >> $@ - echo ' s,%forwcomps%,,g' >> $@ - echo '/%mhl_forward%/r $(top_srcdir)/etc/mhl.forward' >> $@ - echo ' s,%mhl_forward%,,g' >> $@ - echo '/%mhl_format%/r $(top_srcdir)/etc/mhl.format' >> $@ - echo ' s,%mhl_format%,,g' >> $@ - echo '/%mhl_reply%/r $(top_srcdir)/etc/mhl.reply' >> $@ - echo ' s,%mhl_reply%,,g' >> $@ + @echo 's,%nmhwarning%,THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT.,g' > $@ + @echo 's,%nmhversion%,mmh-$(VERSION),g' >> $@ + @echo 's,%nmhdate%,$(DATE),g' >> $@ + @echo 's,%bindir%,$(bindir),g' >> $@ + @echo 's,%etcdir%,$(etcdir),g' >> $@ + @echo 's,%libdir%,$(libdir),g' >> $@ + @echo 's,%mandir%,$(mandir),g' >> $@ + @echo 's,%mailspool%,$(mailspool),g' >> $@ + @echo 's,%sendmailpath%,$(sendmailpath),g' >> $@ + @echo 's,%manext1%,$(manext1),g' >> $@ + @echo 's,%manext5%,$(manext5),g' >> $@ + @echo 's,%manext7%,$(manext7),g' >> $@ + @echo 's,%manext8%,$(manext8),g' >> $@ + @echo '/%components%/r $(top_srcdir)/etc/components' >> $@ + @echo ' s,%components%,,g' >> $@ + @echo '/%distcomps%/r $(top_srcdir)/etc/distcomps' >> $@ + @echo ' s,%distcomps%,,g' >> $@ + @echo '/%forwcomps%/r $(top_srcdir)/etc/forwcomps' >> $@ + @echo ' s,%forwcomps%,,g' >> $@ + @echo '/%mhl_forward%/r $(top_srcdir)/etc/mhl.forward' >> $@ + @echo ' s,%mhl_forward%,,g' >> $@ + @echo '/%mhl_format%/r $(top_srcdir)/etc/mhl.format' >> $@ + @echo ' s,%mhl_format%,,g' >> $@ + @echo '/%mhl_reply%/r $(top_srcdir)/etc/mhl.reply' >> $@ + @echo ' s,%mhl_reply%,,g' >> $@ # ========= INSTALL TARGETS =========