aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2021-10-09 01:57:51 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2021-11-08 12:27:23 +0400
commit0dd35c16297a365bc99115284ab3e77da9986368 (patch)
tree33edd18d09a35abc4899e23d675f0349ff8811e3
parent905655ea6ab6f25371415f2483e02ab34e3bb98a (diff)
downloadqemu-0dd35c16297a365bc99115284ab3e77da9986368.zip
qemu-0dd35c16297a365bc99115284ab3e77da9986368.tar.gz
qemu-0dd35c16297a365bc99115284ab3e77da9986368.tar.bz2
docs/sphinx: add templates files to generated depfile
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--docs/conf.py2
-rw-r--r--docs/sphinx/depfile.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index ff6e92c..edc2bf8 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -74,7 +74,7 @@ needs_sphinx = '1.6'
extensions = ['kerneldoc', 'qmp_lexer', 'hxtool', 'depfile', 'qapidoc']
# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
+templates_path = [os.path.join(qemu_docdir, '_templates')]
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
diff --git a/docs/sphinx/depfile.py b/docs/sphinx/depfile.py
index 99539ad..afdcbce 100644
--- a/docs/sphinx/depfile.py
+++ b/docs/sphinx/depfile.py
@@ -27,7 +27,7 @@ def get_infiles(env):
if mod.__file__:
yield mod.__file__
# this is perhaps going to include unused files:
- for static_path in env.config.html_static_path:
+ for static_path in env.config.html_static_path + env.config.templates_path:
for path in Path(static_path).rglob('*'):
yield str(path)