From 96a7501aad324b3b73d12f5e5a8462e74c48115a Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Wed, 29 Aug 2018 17:47:20 +0200 Subject: [PATCH] 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 Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- Documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index 4ae9ba5c86..4a59c6243f 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -341,7 +341,7 @@ $(OBSOLETE_HTML): %.html : %.txto asciidoc.conf mv $@+ $@ manpage-base-url.xsl: manpage-base-url.xsl.in - sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@ + $(QUIET_GEN)sed "s|@@MAN_BASE_URL@@|$(MAN_BASE_URL)|" $< > $@ %.1 %.5 %.7 : %.xml manpage-base-url.xsl $(QUIET_XMLTO)$(RM) $@ && \ -- 2.39.2