diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-19 15:29:22 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-04-19 19:23:02 +0200 |
commit | cebed25e675b828a77d11676213f343244a7e57e (patch) | |
tree | b4c0a2b369e8bf54fea2db5f3fb93fbf1927600c /gnu | |
parent | 0620901219be0c62763873b1aba8b78ff30f90c8 (diff) | |
download | guix-cebed25e675b828a77d11676213f343244a7e57e.tar.gz |
gnu: mamba: Prepare for cross-compilation.
* gnu/packages/music.scm (mamba)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 265b8fdccf..11702af4af 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5997,7 +5997,7 @@ It can also play and mix samples.") #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) - "CC=gcc") + (string-append "CC=" ,(cc-for-target))) #:phases (modify-phases %standard-phases (delete 'configure)))) |