From: Bruce Richardson Date: Tue, 1 Sep 2020 14:51:27 +0000 (+0100) Subject: doc: add doxygen index file to dependencies X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=10044a8e018d37f315ef987f6d97220ecd9feb8e;p=dpdk.git 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 --- 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',