mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05: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:
parent
2f4c2df12e
commit
3a62dd6b22
1 changed files with 2 additions and 2 deletions
|
@ -403,8 +403,8 @@ (define standard-cross-packages
|
||||||
(case kind
|
(case kind
|
||||||
((host)
|
((host)
|
||||||
`(("cross-gcc" ,(gcc target
|
`(("cross-gcc" ,(gcc target
|
||||||
(binutils target)
|
#:xbinutils (binutils target)
|
||||||
(libc target)))
|
#:libc (libc target)))
|
||||||
("cross-binutils" ,(binutils target))))
|
("cross-binutils" ,(binutils target))))
|
||||||
((target)
|
((target)
|
||||||
`(("cross-libc" ,(libc target))))))))
|
`(("cross-libc" ,(libc target))))))))
|
||||||
|
|
Loading…
Reference in a new issue