From 81b7cf09faa523e7bb438abe24e6e5376e45a0e5 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Mon, 2 May 2022 13:55:15 +0100 Subject: 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.) --- newlib/libm/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libm') diff --git a/newlib/libm/Makefile.inc b/newlib/libm/Makefile.inc index 699bc4caf..7fda120e5 100644 --- a/newlib/libm/Makefile.inc +++ b/newlib/libm/Makefile.inc @@ -24,7 +24,7 @@ $(LIBM_CHEWOUT_FILES): $(MKDOC) $(AM_V_at)$(SHELL) $(newlib_basedir)/../move-if-change $@.tmp $@ %C%_man.stamp: %D%/libm.xml - $(AM_V_GEN)xmlto --skip-validation -o %D% --searchpath $(builddir)/%D% man -m $(srcdir)/man.xsl %D%/libm.xml + $(AM_V_GEN)xmlto --skip-validation -o %D% --searchpath $(builddir)/%D% man -m $(srcdir)/man.xsl $(XMLTO_MAN_QUIET) %D%/libm.xml $(AM_V_at)touch $@ man: %C%_man.stamp -- cgit v1.2.3