From 1dca492eddf4f45cbeac4c7a0d77553211489593 Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 14 Jan 2025 14:47:10 +0000 Subject: [PATCH] meson: fix missing deps for technical articles 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 Acked-by: Patrick Steinhardt Signed-off-by: Junio C Hamano --- Documentation/technical/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/technical/meson.build b/Documentation/technical/meson.build index 21dfb8b5c9d934..3a65ee59b3cd2c 100644 --- a/Documentation/technical/meson.build +++ b/Documentation/technical/meson.build @@ -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', )