From f26735148aae8db07ee25ce7f09defc44e469e1e Mon Sep 17 00:00:00 2001 From: Dariqq Date: Mon, 27 Oct 2025 07:40:04 +0000 Subject: [PATCH] build-system: meson: Change pkgconfig to pkg-config. Meson is warning that the pkgconfig entry is deprecated. DEPRECATION: "pkgconfig" entry is deprecated and should be replaced by "pkg-config". * guix/build-system/meson.scm (make-binaries-alist): Replace deprecated 'pkgconfig with 'pkg-config. Change-Id: Ic7f2ce5503661ad163c4cfe9cd307ff6175134ff Signed-off-by: Liliana Marie Prikler --- guix/build-system/meson.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm index 5b7b2606f5a..705fd1fa2b9 100644 --- a/guix/build-system/meson.scm +++ b/guix/build-system/meson.scm @@ -99,7 +99,7 @@ the ‘binaries’ section of the cross file when cross-compiling for TRIPLET." `((c . ,(cc-for-target triplet)) (cpp . ,(cxx-for-target triplet)) - (pkgconfig . ,(pkg-config-for-target triplet)) + (pkg-config . ,(pkg-config-for-target triplet)) (objcopy . ,(string-append triplet "-objcopy")) (ar . ,(string-append triplet "-ar")) (ld . ,(string-append triplet "-ld"))