mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: ubridge: Fix cross-compilation.
* gnu/packages/networking.scm (ubridge)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
parent
907b9dc8cb
commit
24f4fc8431
1 changed files with 2 additions and 1 deletions
|
@ -2552,7 +2552,8 @@ (define-public ubridge
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
#:make-flags '("CC=gcc")
|
#:make-flags
|
||||||
|
(list ,(string-append "CC=" (cc-for-target)))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure) ; no configure script
|
(delete 'configure) ; no configure script
|
||||||
|
|
Loading…
Reference in a new issue