mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: xa: Fix cross-compilation.
* gnu/packages/assembly.scm (xa)[arguments]<#:make-flags>: Use cc-for-target. Change-Id: I5454e9c5091bdae95d88b9cdf0b402a89e2ff1f9
This commit is contained in:
parent
6f593f1a0e
commit
4c49cd171e
1 changed files with 3 additions and 1 deletions
|
@ -475,7 +475,9 @@ (define-public xa
|
|||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)) ; no "configure" script
|
||||
#:make-flags
|
||||
#~(list (string-append "DESTDIR=" #$output)))) ; no $prefix support
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "LD=" #$(cc-for-target))
|
||||
(string-append "DESTDIR=" #$output)))) ; no $prefix support
|
||||
(native-inputs (list perl))
|
||||
(home-page "https://www.floodgap.com/retrotech/xa/")
|
||||
(synopsis "Two-pass portable cross-assembler")
|
||||
|
|
Loading…
Reference in a new issue