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:
Efraim Flashner 2020-09-18 14:06:06 +03:00
parent 469e6aaea0
commit 9ef590dc8a
Signed by untrusted user: efraim
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ configuration files.")
(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