gnu: libaio: Fix cross-compilation.

* gnu/packages/linux.scm (libaio)[arguments]: When cross-compiling, set CC to
the cross-gcc in #:make-flags.
This commit is contained in:
Marius Bakke 2020-01-27 22:01:16 +01:00
parent a6046f24dd
commit f847d9dcda
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -3838,8 +3838,14 @@ (define-public libaio
"0ajhzbqjwsmz51gwccfyw6w9k4j4gmxcl2ph30sfn2gxv0d8gkv2"))))
(build-system gnu-build-system)
(arguments
'(#:make-flags
(list "CC=gcc" (string-append "prefix=" %output))
`(#:make-flags
(let ((target ,(%current-target-system)))
(list (string-append "prefix=" %output)
(string-append
"CC=" (if target
(string-append (assoc-ref %build-inputs "cross-gcc")
"/bin/" target "-gcc")
"gcc"))))
#:test-target "partcheck" ; need root for a full 'check'
#:phases
(modify-phases %standard-phases (delete 'configure)))) ; no configure script