From 3cac3fce4b3a7259b5726a0d4ecdfa936cbf15eb Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Thu, 13 Oct 2022 17:48:10 +0200 Subject: [PATCH] build: add libsystemd to oss fuzz dependencies Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=52169 Signed-off-by: Christian Brauner (Microsoft) --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index f8bdcf4e8..9e0b1b67f 100644 --- a/meson.build +++ b/meson.build @@ -896,6 +896,9 @@ endif if has_sd_bus liblxc_dependencies += [libsystemd] + if want_oss_fuzz + oss_fuzz_dependencies += [libsystemd] + endif endif if have_openpty -- 2.47.2