aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2021-10-15 14:36:16 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2021-11-08 12:27:23 +0400
commit89bcfe780a8e1a900d94014dfdef756cc3eb8221 (patch)
tree7ae6c3556d27aebaf03f438948e86b58c094bd28 /docs
parent706bbad2bacf21bed3e61d99203afe85b73f97f1 (diff)
downloadqemu-89bcfe780a8e1a900d94014dfdef756cc3eb8221.zip
qemu-89bcfe780a8e1a900d94014dfdef756cc3eb8221.tar.gz
qemu-89bcfe780a8e1a900d94014dfdef756cc3eb8221.tar.bz2
meson: drop sphinx_extn_depends
Module dependencies is now handled by depfile.py. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/meson.build9
1 files changed, 1 insertions, 8 deletions
diff --git a/docs/meson.build b/docs/meson.build
index 19cce67..34fda68 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -37,13 +37,6 @@ endif
if build_docs
SPHINX_ARGS += ['-Dversion=' + meson.project_version(), '-Drelease=' + config_host['PKGVERSION']]
- sphinx_extn_depends = [ meson.current_source_dir() / 'sphinx/depfile.py',
- meson.current_source_dir() / 'sphinx/hxtool.py',
- meson.current_source_dir() / 'sphinx/kerneldoc.py',
- meson.current_source_dir() / 'sphinx/kernellog.py',
- meson.current_source_dir() / 'sphinx/qapidoc.py',
- meson.current_source_dir() / 'sphinx/qmp_lexer.py',
- qapi_gen_depends ]
sphinx_template_files = [ meson.project_source_root() / 'docs/_templates/footer.html' ]
have_ga = have_tools and config_host.has_key('CONFIG_GUEST_AGENT')
@@ -77,7 +70,7 @@ if build_docs
output: 'docs.stamp',
input: files('conf.py'),
depfile: 'docs.d',
- depend_files: [ sphinx_extn_depends, sphinx_template_files ],
+ depend_files: [ sphinx_template_files ],
command: [SPHINX_ARGS, '-Ddepfile=@DEPFILE@',
'-Ddepfile_stamp=@OUTPUT0@',
'-b', 'html', '-d', private_dir,