From 6839ce3318dc200c42d43ea06ecd94cb118b3c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 27 Jul 2021 19:58:55 +0200 Subject: [PATCH] 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. --- meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meson.build b/meson.build index e3b2b816c2..e9a506e163 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) ############################################################