Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL. E. Segovia <amy@centricular.com>2023-08-18 04:07:16 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-09-20 19:23:30 +0300
commit8c1361efbfd752e0bfff695cd0f82b494184ab99 (patch)
treeec352d4e19fd6b54d7d112f8c61c3c649e0e3bdd
parentd6e11f38d2b070ce96aed72810353026e279b5f5 (diff)
meson: Allow usage of externally overridden pkg-config
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1330>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index c4c8d1a49..d802e3e65 100644
--- a/meson.build
+++ b/meson.build
@@ -372,7 +372,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