summaryrefslogtreecommitdiff
path: root/man/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-11-24 14:00:29 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-11-24 14:00:29 +0100
commit559d215b6733bb46533a52080522a7feca183aa8 (patch)
tree937f3004e047e48a9058d0b7db12f5d0189dc699 /man/meson.build
parent8a8a4b6e3e98db45b7890b2c13c8f9f16dfed7a4 (diff)
downloadsystemd-559d215b6733bb46533a52080522a7feca183aa8.tar.gz
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.
Diffstat (limited to 'man/meson.build')
-rw-r--r--man/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/meson.build b/man/meson.build
index 8757dccb84..3a684101d2 100644
--- a/man/meson.build
+++ b/man/meson.build
@@ -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]