diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-20 17:17:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-20 17:21:33 +0200 |
commit | 2782cb38a3bc68c530d6e95f6834ae0cb7ed16aa (patch) | |
tree | 52df1939a8be69e8a87dab82701f22f88a2ea393 /gnu | |
parent | c1ca2716f821fc1907f706723e887e1bc6e19b82 (diff) | |
download | guix-2782cb38a3bc68c530d6e95f6834ae0cb7ed16aa.tar.gz guix-2782cb38a3bc68c530d6e95f6834ae0cb7ed16aa.zip |
gnu: dragonfly-reverb: Prepare for cross-compilation.
* gnu/packages/music.scm (dragonfly-reverb)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 7a466eaaf0..07b85b87f6 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6499,7 +6499,8 @@ plugin support, JACK support and chord assistance.") (build-system gnu-build-system) (arguments `(#:tests? #f ; no check target - #:make-flags (list "CC=gcc") + #:make-flags + (list (string-append "CC=" ,(cc-for-target))) #:phases (modify-phases %standard-phases (delete 'configure) ;no configure target |