diff options
author | Tim Schumacher <timschumi@gmx.de> | 2018-08-29 17:47:20 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-08-29 12:16:09 -0700 |
commit | 96a7501aad324b3b73d12f5e5a8462e74c48115a (patch) | |
tree | fc7e866dc5fd75e0ba73a2a3fbcecafaf6b2de44 /Documentation/Makefile | |
parent | Git 2.16.4 (diff) | |
download | tgif-96a7501aad324b3b73d12f5e5a8462e74c48115a.tar.xz |
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>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r-- | Documentation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) $@ && \ |