summaryrefslogtreecommitdiffstats
path: root/Documentation/meson.build
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2024-12-27 14:59:32 +0100
committerJunio C Hamano <gitster@pobox.com>2024-12-27 17:28:10 +0100
commit0696ebe9ce533cf3c839c9eb2bd2331c8fa0f014 (patch)
treee34920a32dd2115cff53d9b4dd538f8b208970a5 /Documentation/meson.build
parentmeson: fix generation of merge tools (diff)
downloadgit-0696ebe9ce533cf3c839c9eb2bd2331c8fa0f014.tar.xz
git-0696ebe9ce533cf3c839c9eb2bd2331c8fa0f014.zip
meson: generate HTML pages for all man page categories
When generating HTML pages for our man pages we only generate them for category 1 in Meson, which are the pages corresponding to our built-in commands. I cannot tell why I added this filter though: our Makefile installs all man pages, so a Meson-based build misses out on many of them. Fix this by removing the filter. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r--Documentation/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/meson.build b/Documentation/meson.build
index c2512328ca..48583e9a7f 100644
--- a/Documentation/meson.build
+++ b/Documentation/meson.build
@@ -366,7 +366,7 @@ foreach manpage, category : manpages
)
endif
- if get_option('docs').contains('html') and category == 1
+ if get_option('docs').contains('html')
custom_target(
command: asciidoc_common_options + [
'--backend=' + asciidoc_html,