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>
This commit is contained in:
Kieran Bingham
2019-01-14 09:57:34 +00:00
parent e42683b40d
commit e3c4994812
+1 -1
View File
@@ -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,