From c0b4b0f8f548c755dee81be29ef90971f8fb570e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 9 Mar 2018 14:58:47 +0100 Subject: [PATCH] meson: libmount is required for oss-fuzz builds now too See https://github.com/google/oss-fuzz/issues/1191. --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e152226ead..2badc3bd78 100644 --- a/meson.build +++ b/meson.build @@ -843,8 +843,7 @@ if not libcap.found() endif libmount = dependency('mount', - version : '>= 2.30', - required : not fuzzer_build) + version : fuzzer_build ? '>= 0' : '>= 2.30') want_seccomp = get_option('seccomp') if want_seccomp != 'false' and not fuzzer_build