diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2022-05-02 13:55:15 +0100 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2022-05-04 17:05:52 -0400 |
commit | 81b7cf09faa523e7bb438abe24e6e5376e45a0e5 (patch) | |
tree | 3d74236b512ad243431c63fb4f94ff37f7da5c95 /newlib/Makefile.am | |
parent | d51aab2abd5ba58fd9765a0aaac00a8dbd0ee886 (diff) | |
download | newlib-81b7cf09faa523e7bb438abe24e6e5376e45a0e5.zip newlib-81b7cf09faa523e7bb438abe24e6e5376e45a0e5.tar.gz newlib-81b7cf09faa523e7bb438abe24e6e5376e45a0e5.tar.bz2 |
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.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 16c10f4..0108d85 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 |