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>
This commit is contained in:
Marc-André Lureau 2021-10-09 01:46:10 +04:00
parent cd0a9e983c
commit 905655ea6a
1 changed files with 5 additions and 0 deletions

View File

@ -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):