diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-01-08 14:37:46 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2019-01-14 09:57:34 +0000 |
commit | e3c49948123d6b66fce9bc094526895a11dae207 (patch) | |
tree | 73a8d1fef7fb6b9fdfd801309dc6aef33d9ed41c /Documentation | |
parent | e42683b40d657eda998e62ef0895a4e386165023 (diff) |
Documentation: quieten sphinx-build output
The output of the sphinx-build for our documentation is overly verbose.
Reduce this output to warnings and errors with the '-q' quiet option.
Acked-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/meson.build b/Documentation/meson.build index dd43b2cb..73da25b8 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -49,7 +49,7 @@ if sphinx.found() ] custom_target('documentation', - command: [sphinx, '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'], + command: [sphinx, '-q', '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'], input: docs_sources, output: 'html', build_by_default: true, |