diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-07-27 19:58:55 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-07-27 19:58:55 +0200 |
commit | 6839ce3318dc200c42d43ea06ecd94cb118b3c00 (patch) | |
tree | da7e84b5761113c83271887034a72a1aba0a1249 /meson.build | |
parent | fce9abb22793505fbb09eccd0b1e24b5d578dbcc (diff) | |
download | systemd-6839ce3318dc200c42d43ea06ecd94cb118b3c00.tar.gz |
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.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 1 insertions, 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) ############################################################ |