]> git.ipfire.org Git - thirdparty/git.git/commitdiff
meson: fix missing deps for technical articles
authorSam James <sam@gentoo.org>
Tue, 14 Jan 2025 14:47:10 +0000 (14:47 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 14 Jan 2025 19:17:35 +0000 (11:17 -0800)
We need an explicit `depends: documentation_deps` so that all of our
Documentation targets know they require asciidoc.conf. This shows up
as parallel build failures with it not yet being available.

Other targets look OK already.

Signed-off-by: Sam James <sam@gentoo.org>
Acked-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/technical/meson.build

index 21dfb8b5c9d93490f16c24bab1d49631e0395571..3a65ee59b3cd2cf32125893011ed0fa06f1e2c4b 100644 (file)
@@ -60,6 +60,7 @@ foreach article : api_docs + articles
     command: asciidoc_html_options,
     input: article,
     output: fs.stem(article) + '.html',
+    depends: documentation_deps,
     install: true,
     install_dir: get_option('datadir') / 'doc/git-doc/technical',
   )