diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-27 00:37:45 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-27 00:49:51 +0100 |
commit | 275f7cf8a1a713c027f669d622ee75de5afe5fa0 (patch) | |
tree | 5370ac28e411372cd0872f2b356e0447e145140a | |
parent | e16f76fae29cc88e7d8b7b65dd53e9216eb5cd24 (diff) | |
download | guix-275f7cf8a1a713c027f669d622ee75de5afe5fa0.tar.gz guix-275f7cf8a1a713c027f669d622ee75de5afe5fa0.zip |
gnu: radeontop: Prepare for cross-compilation.
* gnu/packages/linux.scm (radeontop)[arguments]: Use CC-FOR-TARGET.
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7761cd1fe3..5029bd8721 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -6509,7 +6509,7 @@ developers.") (("ver=unknown") (string-append "ver=" ,version))))) (delete 'configure)) ; no configure script - #:make-flags (list "CC=gcc" + #:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "PREFIX=" %output)) #:tests? #f)) ; no tests (native-inputs |