From 82f3e77fb24be0925ef1f44ff38fe8df804efd89 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 6 Aug 2018 15:19:57 +1000 Subject: [PATCH] doc/user: drop the sphinx -a flag Let's trust sphinx to know what to rebuild Signed-off-by: Peter Hutterer --- doc/user/meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/user/meson.build b/doc/user/meson.build index a5870491..c481331a 100644 --- a/doc/user/meson.build +++ b/doc/user/meson.build @@ -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)