From: Daniel P. Berrangé Date: Thu, 12 Aug 2021 10:24:27 +0000 (+0100) Subject: docs: make sphinx-build be quiet by default X-Git-Tag: v6.2.0-rc0~135^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2e8801988282bf3a45b495efa8438509ff68056d;p=thirdparty%2Fqemu.git docs: make sphinx-build be quiet by default The sphinx-build is fairly verbose spitting out pages of output to the console, which causes errors from other build commands to be scrolled off the top of the terminal. This can leave the mistaken impression that the build passed, when in fact there was a failure. Signed-off-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Marc-André Lureau Message-Id: <20210812102427.4036399-1-berrange@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/docs/meson.build b/docs/meson.build index 300b1343291..cffe1ecf1d9 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -9,7 +9,7 @@ endif # Check if tools are available to build documentation. build_docs = false if sphinx_build.found() - SPHINX_ARGS = ['env', 'CONFDIR=' + qemu_confdir, sphinx_build] + SPHINX_ARGS = ['env', 'CONFDIR=' + qemu_confdir, sphinx_build, '-q'] # If we're making warnings fatal, apply this to Sphinx runs as well if get_option('werror') SPHINX_ARGS += [ '-W' ]