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
parent
2f4c2df12e
commit
3a62dd6b22
|
@ -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))))))))
|
||||
|
|
Reference in New Issue