From 10044a8e018d37f315ef987f6d97220ecd9feb8e Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Tue, 1 Sep 2020 15:51:27 +0100 Subject: [PATCH] doc: add doxygen index file to dependencies The doxygen index file is not printed as a processed file by doxygen so it does not appear in the output .d (dependency file) list automatically generated. Therefore, for correct rebuild tracking, we need to explicitly include it as a dependency of the doxygen job. Signed-off-by: Bruce Richardson --- doc/api/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api/meson.build b/doc/api/meson.build index 4f51f5d724..dfdefdc924 100644 --- a/doc/api/meson.build +++ b/doc/api/meson.build @@ -48,6 +48,7 @@ doxy_conf = configure_file(input: 'doxy-api.conf.in', doxy_build = custom_target('doxygen', depends: example, + depend_files: 'doxy-api-index.md', input: doxy_conf, output: 'html', depfile: 'html.d', -- 2.20.1