From: Patrick Steinhardt Date: Fri, 27 Dec 2024 13:59:32 +0000 (+0100) Subject: meson: generate HTML pages for all man page categories X-Git-Tag: v2.48.0-rc2~5^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0696ebe9ce533cf3c839c9eb2bd2331c8fa0f014;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- 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,