mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: linenoise: Fix cross-compilation.
* gnu/packages/shells.scm (linenoise)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
parent
3a169fe301
commit
39f8ef2d16
1 changed files with 3 additions and 2 deletions
|
@ -600,8 +600,9 @@ (define-public linenoise
|
|||
"1z16qwix8z6a40fskdgxsibkqgdrp4q6ncp4n6hnv4r9iihy2d8r"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;No tests are included
|
||||
#:make-flags (list "CC=gcc")
|
||||
`(#:tests? #f ; no tests are included
|
||||
#:make-flags
|
||||
(list ,(string-append "CC=" (cc-for-target)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
|
|
Loading…
Reference in a new issue