diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-05-15 10:49:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 10:49:10 +0200 |
commit | f1e696221f0e4fb1703e886e8b292747434c346a (patch) | |
tree | 4d5eaf234949642e98d7e18e61bebf3a9f3b060b /man | |
parent | resolved: fix braino with reference counting and linked lists (diff) | |
parent | meson: revert the change to unquote commands in add_install_script (diff) | |
download | systemd-f1e696221f0e4fb1703e886e8b292747434c346a.tar.xz systemd-f1e696221f0e4fb1703e886e8b292747434c346a.zip |
Merge pull request #19612 from keszybz/meson-0.58-quieting
Make meson output quiet again
Diffstat (limited to 'man')
-rw-r--r-- | man/meson.build | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/man/meson.build b/man/meson.build index f9c4b83dc8..2e3b858f4f 100644 --- a/man/meson.build +++ b/man/meson.build @@ -70,7 +70,7 @@ foreach tuple : xsltproc.found() ? manpages : [] link = custom_target( htmlalias, output : htmlalias, - command : ['ln', '-fs', html, '@OUTPUT@']) + command : [ln, '-fs', html, '@OUTPUT@']) if want_html dst = join_paths(docdir, 'html', htmlalias) cmd = 'ln -fs @0@ $DESTDIR@1@'.format(html, dst) @@ -148,7 +148,7 @@ foreach tuple : xsltproc.found() ? [['systemd.directives', '7', systemd_directiv htmlalias, input : p2, output : htmlalias, - command : ['ln', '-fs', html, '@OUTPUT@']) + command : [ln, '-fs', html, '@OUTPUT@']) if want_html dst = join_paths(docdir, 'html', htmlalias) cmd = 'ln -fs @0@ $DESTDIR@1@'.format(html, dst) @@ -176,15 +176,14 @@ man = custom_target( 'man', output : 'man', depends : man_pages, - command : ['echo']) + command : [echo]) html = custom_target( 'html', output : 'html', depends : html_pages, - command : ['echo']) + command : [echo]) -rsync = find_program('rsync', required : false) if rsync.found() run_target( 'doc-sync', |