diff options
author | Marc-André Lureau | 2021-10-08 23:57:51 +0200 |
---|---|---|
committer | Marc-André Lureau | 2021-11-08 09:27:23 +0100 |
commit | 0dd35c16297a365bc99115284ab3e77da9986368 (patch) | |
tree | 33edd18d09a35abc4899e23d675f0349ff8811e3 /docs/sphinx | |
parent | docs/sphinx: add static files to generated depfile (diff) | |
download | qemu-0dd35c16297a365bc99115284ab3e77da9986368.tar.gz qemu-0dd35c16297a365bc99115284ab3e77da9986368.tar.xz qemu-0dd35c16297a365bc99115284ab3e77da9986368.zip |
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>
Diffstat (limited to 'docs/sphinx')
-rw-r--r-- | docs/sphinx/depfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sphinx/depfile.py b/docs/sphinx/depfile.py index 99539adb48..afdcbcec6e 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) |