me
/
guix
Archived
1
0
Fork 0

gnu: lolcat: Fix cross-compilation.

* gnu/packages/games.scm (lolcat)[arguments]: Use CC-FOR-TARGET.
master
Tobias Geerinckx-Rice 2020-06-02 19:15:03 +02:00
parent cb056c4019
commit e712b998aa
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 2 deletions

View File

@ -626,8 +626,9 @@ tired of cows, a variety of other ASCII-art messengers are available.")
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ;; no check target
#:make-flags (list "CC=gcc")
`(#:tests? #f ; no check target
#:make-flags
(list ,(string-append "CC=" (cc-for-target)))
#:phases
(modify-phases %standard-phases
(delete 'bootstrap)