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>
This commit is contained in:

committed by
Junio C Hamano

parent
b88540045c
commit
0696ebe9ce
@ -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,
|
||||
|
Reference in New Issue
Block a user