projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3650b22
)
docs: Makefile: honor V=0 for docs building
author
Mauro Carvalho Chehab
<mchehab+huawei@kernel.org>
Tue, 27 Oct 2020 10:56:15 +0000
(11:56 +0100)
committer
Jonathan Corbet
<corbet@lwn.net>
Wed, 28 Oct 2020 17:06:36 +0000
(11:06 -0600)
Reduce the number of displayed mesages when building the
docs with V=0.
Suggested-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link:
https://lore.kernel.org/r/478c114a2399b68a18de94ee5f98649304f3903b.1603796153.git.mchehab+huawei@kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/Makefile
patch
|
blob
|
history
diff --git
a/Documentation/Makefile
b/Documentation/Makefile
index 6b12dd82f71249318637aa8b2de73139d95de4b7..4e47dff8b315e1edad7993cb5fcb48331f9eda61 100644
(file)
--- a/
Documentation/Makefile
+++ b/
Documentation/Makefile
@@
-21,6
+21,10
@@
BUILDDIR = $(obj)/output
PDFLATEX = xelatex
LATEXOPTS = -interaction=batchmode
+ifeq ($(KBUILD_VERBOSE),0)
+SPHINXOPTS += "-q"
+endif
+
# User-friendly check for sphinx-build
HAVE_SPHINX := $(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi)