diff options
author | Sam James <sam@gentoo.org> | 2025-01-14 15:47:10 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2025-01-14 20:17:35 +0100 |
commit | 1dca492eddf4f45cbeac4c7a0d77553211489593 (patch) | |
tree | 851cd73817e9e1f40fd204ac7fe22ac85eecabb3 /Documentation/technical/meson.build | |
parent | Documentation: wire up sanity checks for Meson (diff) | |
download | git-1dca492eddf4f45cbeac4c7a0d77553211489593.tar.xz git-1dca492eddf4f45cbeac4c7a0d77553211489593.zip |
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 <sam@gentoo.org>
Acked-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | Documentation/technical/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/technical/meson.build b/Documentation/technical/meson.build index 21dfb8b5c9..3a65ee59b3 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', ) |