diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-01-23 15:07:01 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-01-23 15:07:02 -0800 |
| commit | aa31820d9da83cecfb028c76327d74694e3fc11f (patch) | |
| tree | c3c9d819e0c14675b83f1e0593ad566ac7030564 /Documentation/technical | |
| parent | d8093fd6c192d900082eb8d78a385ca1e13effa8 (diff) | |
| parent | 1dca492eddf4f45cbeac4c7a0d77553211489593 (diff) | |
| download | git-aa31820d9da83cecfb028c76327d74694e3fc11f.tar.gz | |
Merge branch 'sj/meson-doc-technical-dependency-fix'
The meson build procedure for Documentation/technical/ hierarchy was
missing necessary dependencies, which has been corrected.
* sj/meson-doc-technical-dependency-fix:
meson: fix missing deps for technical articles
Diffstat (limited to 'Documentation/technical')
| -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', ) |
