me
/
guix
Archived
1
0
Fork 0

build-system: gnu: Fix cross-gcc call.

This is a follow-up to 7b3318e34f.

* guix/build-system/gnu.scm (standard-cross-packages): Use keyword arguments
in cross-gcc call.
master
Ricardo Wurmus 2017-05-25 16:58:15 +02:00
parent 2f4c2df12e
commit 3a62dd6b22
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 2 deletions

View File

@ -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))))))))