diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-19 11:30:32 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:29 -0400 |
commit | 9c84bb784d44bdb58fe4992619a8f96d1229900c (patch) | |
tree | ee6020584cc5db600719ecc48786259c1cf49714 /man/meson.build | |
parent | 08936cea45e032d99bf718a9a1255e1ae79b9964 (diff) |
meson: fix 'clean'
Diffstat (limited to 'man/meson.build')
-rw-r--r-- | man/meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/man/meson.build b/man/meson.build index b71bc20509..9cdb560c4c 100644 --- a/man/meson.build +++ b/man/meson.build @@ -127,8 +127,10 @@ foreach tuple : [['systemd.directives', '7', systemd_directives_xml], html_pages += [p2] endforeach -man = run_target( +# cannot use run_target until https://github.com/mesonbuild/meson/issues/1644 is resolved +man = custom_target( 'man', + output : 'man', depends : man_pages, command : ['echo']) |