From fa7cc7e3471509460f5cdf968b99deeef2b60665 Mon Sep 17 00:00:00 2001 From: meator Date: Tue, 7 May 2024 15:26:40 +0200 Subject: [PATCH] common/build-helper/meson.sh: Fix deprecation warn This commit removes the following deprecation notice: DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config" --- common/build-helper/meson.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-helper/meson.sh b/common/build-helper/meson.sh index 6232f9260c2e94..e414afbfba4bb3 100644 --- a/common/build-helper/meson.sh +++ b/common/build-helper/meson.sh @@ -64,7 +64,7 @@ cat > "${XBPS_WRAPPERDIR}/meson/xbps_meson.cross" <<-EOF strip = '${STRIP}' readelf = '${READELF}' objcopy = '${OBJCOPY}' - pkgconfig = '${PKG_CONFIG}' + pkg-config = '${PKG_CONFIG}' rust = ['rustc', '--target', '${RUST_TARGET}' ,'--sysroot', '${XBPS_CROSS_BASE}/usr'] g-ir-scanner = '${XBPS_CROSS_BASE}/usr/bin/g-ir-scanner' g-ir-compiler = '${XBPS_CROSS_BASE}/usr/bin/g-ir-compiler'