doc/user: drop the sphinx -a flag

Let's trust sphinx to know what to rebuild

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2018-08-06 15:19:57 +10:00
parent e33fd7157f
commit 82f3e77fb2

View file

@ -176,13 +176,12 @@ src_sphinx = custom_target('sphinx-sources',
build_by_default: true)
# drop '-a' once we are happy with all this
# do not use -j, it breaks on Ubuntu
sphinx_output_dir = 'Documentation'
custom_target('sphinx',
input : [ sphinx_conf_py, git_version_page ] + src_rst + src_extra + dst_404s,
output : [ sphinx_output_dir ],
command : [ sphinx, '-q', '-b', 'html', '-a',
command : [ sphinx, '-q', '-b', 'html',
meson.current_build_dir(), sphinx_output_dir],
depends: [ src_sphinx ],
build_by_default : true)