Documentation/Makefile: make manpage-base-url.xsl generation quieter

The exact sed command to generate manpage-base-url.xsl appears in the output, unlike the rules for other files that by default only show summary. Make the output for this rule similiar to all the other rules by printing a short status message instead of the whole command. Signed-off-by: Tim Schumacher <timschumi@gmx.de> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Tim Schumacher committed Aug 29, 2018 at 17:47 UTC 96a7501aad324b3b73d12f5e5a8462e74c48115a
1 file changed +1 -1
Documentation/Makefile
+1 -1
@@ -341,7 +341,7 @@ $(OBSOLETE_HTML): %.html : %.txto asciidoc.conf
341 mv $@+ $@
342
343 manpage-base-url.xsl: manpage-base-url.xsl.in
344 - sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@
344 + $(QUIET_GEN)sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@
345
346 %.1 %.5 %.7 : %.xml manpage-base-url.xsl
347 $(QUIET_XMLTO)$(RM) $@ && \