From 3a62dd6b22c054f2e8d6df38d493def52020e714 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 25 May 2017 16:58:15 +0200 Subject: build-system: gnu: Fix cross-gcc call. This is a follow-up to 7b3318e34f4e2743254a88b908859901db960e9a. * guix/build-system/gnu.scm (standard-cross-packages): Use keyword arguments in cross-gcc call. --- guix/build-system/gnu.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guix/build-system/gnu.scm') diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 730e638c89..7cf0cafc0f 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -403,8 +403,8 @@ is one of `host' or `target'." (case kind ((host) `(("cross-gcc" ,(gcc target - (binutils target) - (libc target))) + #:xbinutils (binutils target) + #:libc (libc target))) ("cross-binutils" ,(binutils target)))) ((target) `(("cross-libc" ,(libc target)))))))) -- cgit v1.2.3