mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-06 12:58:22 +03:00
meson: restore building of man pages on demand even if -Dman=false
I want to configure -Dman=false for speed, but be able to build a specific man page sometimes to check my edits. Commit 5b316b9ea6c broke this by mistake. Let's adjust the condition to better match the logic of disabling tests only if xsltproc is really not found.
This commit is contained in:
parent
8a8a4b6e3e
commit
559d215b67
@ -49,7 +49,7 @@ custom_entities_ent = configure_file(
|
||||
man_pages = []
|
||||
html_pages = []
|
||||
source_xml_files = []
|
||||
foreach tuple : want_man or want_html ? manpages : []
|
||||
foreach tuple : xsltproc.found() ? manpages : []
|
||||
stem = tuple[0]
|
||||
section = tuple[1]
|
||||
aliases = tuple[2]
|
||||
|
Loading…
x
Reference in New Issue
Block a user