mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: xxd: Use cc-for-target.
* gnu/packages/vim.scm (xxd)[arguments]: Replace hard-coded gcc with cc-for-target in make-flags.
This commit is contained in:
parent
469e6aaea0
commit
9ef590dc8a
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ (define-public xxd
|
|||
(package (inherit vim)
|
||||
(name "xxd")
|
||||
(arguments
|
||||
`(#:make-flags '("CC=gcc")
|
||||
`(#:make-flags (list ,(string-append "CC=" (cc-for-target)))
|
||||
#:tests? #f ; there are none
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
|
|
Loading…
Reference in a new issue