From 6b79ce605d826d78715adbba98d7acfa02aebae1 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 e9d04db9..42a23358 100644 --- a/meson.build +++ b/meson.build @@ -417,7 +417,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