Skip to content

Commit 948a987

Browse files
pks-tgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b764b7d commit 948a987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ foreach manpage, category : manpages
364364
)
365365
endif
366366

367-
if get_option('docs').contains('html') and category == 1
367+
if get_option('docs').contains('html')
368368
custom_target(
369369
command: asciidoc_common_options + [
370370
'--backend=' + asciidoc_html,

0 commit comments

Comments
 (0)