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-08 14:37:46 +00:00
parent e42683b40d
commit e3c4994812

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,