~ruther/guix-local

f26735148aae8db07ee25ce7f09defc44e469e1e — Dariqq 3 months ago d466614
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>
1 files changed, 1 insertions(+), 1 deletions(-)

M guix/build-system/meson.scm
M guix/build-system/meson.scm => guix/build-system/meson.scm +1 -1
@@ 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"))