mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: aha: Cross-compile.
* gnu/packages/textutils.scm (aha)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
parent
7d98468cec
commit
3a176be045
1 changed files with 3 additions and 2 deletions
|
@ -46,6 +46,7 @@ (define-module (gnu packages textutils)
|
|||
#:use-module (guix build-system go)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
|
@ -1160,10 +1161,10 @@ (define-public aha
|
|||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:make-flags (list "CC=gcc"
|
||||
#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX="
|
||||
(assoc-ref %outputs "out")))
|
||||
#:tests? #f)) ; no test suite
|
||||
|
|
Loading…
Reference in a new issue