diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-03 19:56:47 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-03 20:45:20 +0200 |
commit | 39a598c686839d65a61ec1ebb982bd5896f3d7e4 (patch) | |
tree | 541cf5359f459d735a4aba21e2c4a80164ca25ec /gnu | |
parent | 6aec7e2ec14dc86890c1e7ad142899a83736e10a (diff) | |
download | guix-39a598c686839d65a61ec1ebb982bd5896f3d7e4.tar guix-39a598c686839d65a61ec1ebb982bd5896f3d7e4.tar.gz |
gnu: hcxdumptool: Fix cross-compilation.
* gnu/packages/networking.scm (hcxdumptool)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 84535bda63..7dfdf8c0a1 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2625,7 +2625,7 @@ packets from wireless devices for use with hashcat or John the Ripper.") (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 |