gnu: hcxdumptool: Fix cross-compilation.

* gnu/packages/networking.scm (hcxdumptool)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
Tobias Geerinckx-Rice 2020-06-03 19:56:47 +02:00
parent 6aec7e2ec1
commit 39a598c686
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2625,7 +2625,7 @@ (define-public hcxdumptool
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list "CC=gcc"
(list ,(string-append "CC=" (cc-for-target))
(string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin"))
#:tests? #f ; no test suite
#:phases