diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-02 04:24:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-02 20:50:19 +0200 |
commit | 24f4fc84313c07b91cee747ef43af56411b6bc9e (patch) | |
tree | e3a06c7d91bbe2a6f0dd1a3cb7ff5cf5af2c3e6e /gnu | |
parent | 907b9dc8cb87a2ef831627185b4cb08576b87622 (diff) | |
download | guix-24f4fc84313c07b91cee747ef43af56411b6bc9e.tar.gz guix-24f4fc84313c07b91cee747ef43af56411b6bc9e.zip |
gnu: ubridge: Fix cross-compilation.
* gnu/packages/networking.scm (ubridge)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index ca7b36bb6a..8f650b1ce8 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2552,7 +2552,8 @@ SNMP v3 using both IPv4 and IPv6.") (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests - #:make-flags '("CC=gcc") + #:make-flags + (list ,(string-append "CC=" (cc-for-target))) #:phases (modify-phases %standard-phases (delete 'configure) ; no configure script |