diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-05-25 16:58:15 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-25 17:02:08 +0200 |
commit | 3a62dd6b22c054f2e8d6df38d493def52020e714 (patch) | |
tree | bc36b5ec0e5a899f071f834a562541ac352e301b | |
parent | 2f4c2df12e3a3f14e237cadbcdef17d18568eb49 (diff) | |
download | guix-3a62dd6b22c054f2e8d6df38d493def52020e714.tar guix-3a62dd6b22c054f2e8d6df38d493def52020e714.tar.gz |
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.
-rw-r--r-- | guix/build-system/gnu.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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)))))))) |