From 9d62150b40ca9cb28c8150aacbaf6575831b5329 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Tue, 5 Nov 2019 21:54:11 +0200 Subject: Fix manpages not disabled when disabled by meson --- doc/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/meson.build b/doc/meson.build index 95ca486..26e5d6c 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -1,5 +1,7 @@ scdoc = find_program('scdoc', required: get_option('manpage'), disabler: true) -sh = find_program('sh', required: get_option('manpage'), native: true, disabler: true) +if scdoc.found() + +sh = find_program('sh', required: true, native: true, disabler: true) man_files = ['man/smolbote.1.scd', 'man/smolbote.5.scd'] @@ -28,3 +30,4 @@ foreach input : man_files ) endforeach +endif # manpage -- cgit v1.2.1