diff options
author | Marc-André Lureau | 2021-10-08 23:46:10 +0200 |
---|---|---|
committer | Marc-André Lureau | 2021-11-08 09:27:23 +0100 |
commit | 905655ea6ab6f25371415f2483e02ab34e3bb98a (patch) | |
tree | 4011079ccf1059ca7a3ec00efad86ec278a69411 /docs/sphinx/depfile.py | |
parent | docs/sphinx: add loaded modules to generated depfile (diff) | |
download | qemu-905655ea6ab6f25371415f2483e02ab34e3bb98a.tar.gz qemu-905655ea6ab6f25371415f2483e02ab34e3bb98a.tar.xz qemu-905655ea6ab6f25371415f2483e02ab34e3bb98a.zip |
docs/sphinx: add static 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/depfile.py')
-rw-r--r-- | docs/sphinx/depfile.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/sphinx/depfile.py b/docs/sphinx/depfile.py index b6fb926df1..99539adb48 100644 --- a/docs/sphinx/depfile.py +++ b/docs/sphinx/depfile.py @@ -13,6 +13,7 @@ import os import sphinx import sys +from pathlib import Path __version__ = '1.0' @@ -25,6 +26,10 @@ def get_infiles(env): if hasattr(mod, '__file__'): if mod.__file__: yield mod.__file__ + # this is perhaps going to include unused files: + for static_path in env.config.html_static_path: + for path in Path(static_path).rglob('*'): + yield str(path) def write_depfile(app, exception): |