Skip to content

Commit 0696ebe

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 b885400 commit 0696ebe

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
@@ -366,7 +366,7 @@ foreach manpage, category : manpages
366366
)
367367
endif
368368

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

0 commit comments

Comments
 (0)