From: Zbigniew Jędrzejewski-Szmek Date: Tue, 27 Jul 2021 17:58:55 +0000 (+0200) Subject: meson: use alias_target in one place X-Git-Tag: v250-rc1~910^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6839ce3318dc200c42d43ea06ecd94cb118b3c00;p=thirdparty%2Fsystemd.git meson: use alias_target in one place It was added in meson 0.52.0, and fits very nicely here. See https://mesonbuild.com/Release-notes-for-0-52-0.html#alias_target. --- diff --git a/meson.build b/meson.build index e3b2b816c22..e9a506e1634 100644 --- a/meson.build +++ b/meson.build @@ -3552,10 +3552,7 @@ foreach tuple : fuzzers endif endforeach -run_target( - 'fuzzers', - depends : fuzzer_exes, - command : ['true']) +alias_target('fuzzers', fuzzer_exes) ############################################################