Archived
1
0
Fork 0

gnu: lemonbar: Fix cross-compilation.

* gnu/packages/wm.scm (lemonbar)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
Tobias Geerinckx-Rice 2020-06-02 21:16:24 +02:00
parent 3b394f6a3e
commit 6978cb2865
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1838,9 +1838,10 @@ between windows.")
"1wwqbph392iwz8skaqxb0xpklb1l6yganqz80g4x1fhrnz7idmlh"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no test suite
#:make-flags (list "CC=gcc"
(string-append "PREFIX=" %output))
`(#:tests? #f ; no test suite
#:make-flags
(list ,(string-append "CC=" (cc-for-target))
(string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))