mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: abduco: Use cc-for-target.
* gnu/packages/abduco.scm (abduco)[arguments]: Replace hard-coded gcc with cc-for-target in make-flags.
This commit is contained in:
parent
9995f7ebbc
commit
9e5758630d
1 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
(define-module (gnu packages abduco)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix licenses)
|
||||
#:use-module (guix packages))
|
||||
|
@ -37,7 +38,7 @@ (define-public abduco
|
|||
"1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags (list "CC=gcc"
|
||||
`(#:make-flags (list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
|
|
Loading…
Reference in a new issue