me
/
guix
Archived
1
0
Fork 0

gnu: pigz: Fix cross-compilation.

* gnu/packages/compression.scm (pigz)[arguments]: Use CC-FOR-TARGET.
master
Tobias Geerinckx-Rice 2020-06-02 19:11:05 +02:00
parent 33430a455e
commit 9b9bc1b061
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 2 additions and 1 deletions

View File

@ -875,7 +875,8 @@ extract such file systems.")
(symlink "pigz" (string-append bin "/unpigz"))
(install-file "pigz.1" man)
#t))))
#:make-flags (list "CC=gcc")
#:make-flags
(list ,(string-append "CC=" (cc-for-target)))
#:test-target "tests"))
(inputs `(("zlib" ,zlib)))
(home-page "https://zlib.net/pigz/")