From: Daan De Meyer Date: Thu, 15 May 2025 12:52:48 +0000 (+0200) Subject: meson: Build fuzz executables by default if fuzz-tests option is enabled X-Git-Tag: v258-rc1~569^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7400b14ed91fb1b612024808297bef50ae24fc2;p=thirdparty%2Fsystemd.git meson: Build fuzz executables by default if fuzz-tests option is enabled fuzz-tests is enabled by default now but we still don't build the fuzz executables by default. Let's change that so that we always make sure these still compile when we make changes. --- diff --git a/meson.build b/meson.build index 83442da079a..aeff1b3629c 100644 --- a/meson.build +++ b/meson.build @@ -2196,7 +2196,7 @@ test_additional_kwargs = { } fuzz_template = executable_template + { - 'build_by_default' : fuzzer_build, + 'build_by_default' : want_fuzz_tests, 'install' : false, }