From aaced859ee7c2f2e28f81fadd66e13197d5e1dd9 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Tue, 12 Jul 2022 21:08:41 +0200 Subject: [PATCH] [meson] Search for libbz2 also in /usr/local/lib --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 60a98996..f48defa6 100644 --- a/meson.build +++ b/meson.build @@ -363,7 +363,7 @@ endif if conf_data.get('CONFIG_BZIP2') bz2deps = dependency('bzip2', static: st, required: false) if not bz2deps.found() - bz2deps = compiler.find_library('bz2', static: st) + bz2deps = compiler.find_library('bz2', static: st, dirs: ['/usr/local/lib']) endif deps += bz2deps endif