summaryrefslogtreecommitdiff
path: root/Documentation/meson.build
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-08 14:37:46 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-14 09:57:34 +0000
commite3c49948123d6b66fce9bc094526895a11dae207 (patch)
tree73a8d1fef7fb6b9fdfd801309dc6aef33d9ed41c /Documentation/meson.build
parente42683b40d657eda998e62ef0895a4e386165023 (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/meson.build')
-rw-r--r--Documentation/meson.build2
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,