diff options
| author | Dariqq <dariqq@posteo.net> | 2025-10-27 07:40:04 +0000 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-01-12 22:42:10 +0100 |
| commit | f26735148aae8db07ee25ce7f09defc44e469e1e (patch) | |
| tree | f8b5ce25592b785da9ec30899042019b16d34167 | |
| parent | d4666145b4234060e23cfaad3e6c012eb3055665 (diff) | |
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 <liliana.prikler@gmail.com>
| -rw-r--r-- | guix/build-system/meson.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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")) |
