From 7dea39736b2e1b358e4b89e8daff9f9315676c62 Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Thu, 17 Aug 2023 22:07:16 -0300 Subject: [PATCH] meson: Allow usage of externally overridden pkg-config Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f029cac5..bae1c9a9 100644 --- a/meson.build +++ b/meson.build @@ -373,7 +373,7 @@ if get_option('doc').disabled() endif # 'pkgconfig' is the entry in the machine file, if specified -pkg_config = find_program('pkgconfig', required: false) +pkg_config = find_program('pkgconfig', 'pkg-config', required: false) if pkg_config.found() extra_env += {'PKG_CONFIG': pkg_config.full_path()} endif