diff options
author | Sam James <sam@gentoo.org> | 2023-01-22 04:11:18 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-22 04:38:42 +0000 |
commit | 9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3 (patch) | |
tree | 873eb7c5f28422f02b8c51b2b028038899525b28 | |
parent | meson: release 1.3.6 (diff) | |
download | pax-utils-9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3.tar.gz pax-utils-9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3.tar.bz2 pax-utils-9fb7fc342f28f8342d8de6ca2d71b1cf2b765ae3.zip |
meson: fix installation of (pre-generated) man pages w/o xmlto
Fixes: 502631b86d63c4604b0ed78ad86a054e9726e897
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | man/meson.build | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/man/meson.build b/man/meson.build index 130c8ec..09ac0d5 100644 --- a/man/meson.build +++ b/man/meson.build @@ -1,8 +1,4 @@ -xmlto = find_program('xmlto', required : get_option('build_manpages')) - -if not xmlto.found() - subdir_done() -endif +xmlto = find_program('xmlto', required : get_option('build_manpages'), disabler: true) docbook_conf = configuration_data() docbook_conf.set('version', meson.project_version()) |