Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-05-02 15:55:15 +0300
committerJeff Johnston <jjohnstn@redhat.com>2022-05-05 00:05:52 +0300
commit81b7cf09faa523e7bb438abe24e6e5376e45a0e5 (patch)
tree3d74236b512ad243431c63fb4f94ff37f7da5c95 /newlib/Makefile.am
parentd51aab2abd5ba58fd9765a0aaac00a8dbd0ee886 (diff)
Silence xsltproc when writing manpages
Unless make is invoked with V=1, have xmlto pass the parameter 'man.output.quietly=1' to xsltproc to suppress "Note: Writing foo.N" output from the manpages stylesheet. (This doesn't quite do what it says: The output is not silenced if V has any value, including 0. You could consider that either a bug or a feature.)
Diffstat (limited to 'newlib/Makefile.am')
-rw-r--r--newlib/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am
index 16c10f4a0..0108d8576 100644
--- a/newlib/Makefile.am
+++ b/newlib/Makefile.am
@@ -442,6 +442,9 @@ TEXI2DVI = texi2dvi -E
TEXINFO_TEX = ../texinfo/texinfo.tex
+XMLTO_MAN_QUIET_=--stringparam man.output.quietly=1
+XMLTO_MAN_QUIET=$(XMLTO_MAN_QUIET_$(V))
+
if HAVE_DOC
include doc/Makefile.inc
endif