3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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.
This commit is contained in:
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

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