diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2021-08-12 11:24:27 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-08-25 12:19:18 +0200 |
commit | 2e8801988282bf3a45b495efa8438509ff68056d (patch) | |
tree | f5b89a296fe425924ffe3d5a810362139d1a9000 /docs | |
parent | 1ff4f90add806b6cb6ef1563e6e4ace1fae14548 (diff) | |
download | qemu-2e8801988282bf3a45b495efa8438509ff68056d.zip qemu-2e8801988282bf3a45b495efa8438509ff68056d.tar.gz qemu-2e8801988282bf3a45b495efa8438509ff68056d.tar.bz2 |
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é <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20210812102427.4036399-1-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/meson.build b/docs/meson.build index 300b134..cffe1ec 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' ] |