diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:00 +0200 |
commit | 12f0ffe2b85a0758a56146ef766f7a1ccf2e7d47 (patch) | |
tree | 189688cd95c96d6bc6c723e51f1b965d29b692aa /gnu | |
parent | 4b17711cbcd3e53e2eb1859af83800f78a15a0ab (diff) | |
download | guix-12f0ffe2b85a0758a56146ef766f7a1ccf2e7d47.tar.gz |
gnu: setbfree: Prepare for cross-compilation.
* gnu/packages/music.scm (setbfree)[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 25a8e54809..7674af7096 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2663,7 +2663,7 @@ Paul), and specifically the PaulXStretch version from Xenakios.") #:phases (modify-phases %standard-phases (add-before 'build 'set-CC-variable - (lambda _ (setenv "CC" "gcc"))) + (lambda _ (setenv "CC" ,(cc-for-target)))) (delete 'configure)))) (inputs (list jack-1 |