From 39a598c686839d65a61ec1ebb982bd5896f3d7e4 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 3 Jun 2020 19:56:47 +0200 Subject: [PATCH] gnu: hcxdumptool: Fix cross-compilation. * gnu/packages/networking.scm (hcxdumptool)[arguments]: Use CC-FOR-TARGET. --- gnu/packages/networking.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ (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