From de64699eaae892c6886d9ae4ed849116990231e7 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 26 Jan 2024 23:02:57 +0530 Subject: [PATCH] meson: pkg-config is required at build time Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7a842ff4..109ecbb4 100644 --- a/meson.build +++ b/meson.build @@ -409,7 +409,7 @@ if get_option('doc').disabled() endif # 'pkgconfig' is the entry in the machine file, if specified -pkg_config = find_program('pkgconfig', 'pkg-config', required: false) +pkg_config = find_program('pkgconfig', 'pkg-config') if pkg_config.found() extra_env += {'PKG_CONFIG': pkg_config.full_path()} endif