From 7d3a3c055bd7e97d9765710e227512afeeb4bfa4 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sun, 29 Oct 2023 01:57:47 +0000 Subject: [PATCH] meson: use pkg-config not pkgconfig reference: - https://mesonbuild.com/Release-notes-for-1-3-0.html#machine-files-pkgconfig-field-deprecated-and-replaced-by-pkgconfig --- config/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/functions b/config/functions index c350b751cd..95d8c78d19 100644 --- a/config/functions +++ b/config/functions @@ -580,7 +580,7 @@ c = '$CC' cpp = '$CXX' ar = '$AR' strip = '$STRIP' -pkgconfig = '$PKG_CONFIG' +pkg-config = '$PKG_CONFIG' llvm-config = '$TOOLCHAIN/bin/llvm-config' libgcrypt-config = '$SYSROOT_PREFIX/usr/bin/libgcrypt-config' @@ -618,7 +618,7 @@ c = '$TARGET_CC' cpp = '$TARGET_CXX' ar = '$TARGET_AR' strip = '$TARGET_STRIP' -pkgconfig = '$PKG_CONFIG' +pkg-config = '$PKG_CONFIG' llvm-config = '$SYSROOT_PREFIX/usr/bin/llvm-config' libgcrypt-config = '$SYSROOT_PREFIX/usr/bin/libgcrypt-config'