diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-29 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-29 02:00:00 +0200 |
commit | 4e735cccc7ca1c9ba8278df84b9351f1fa731e84 (patch) | |
tree | dcf4d452e63c1ad15a4e8755d3d932294d35615f /gnu/packages/games.scm | |
parent | 64e78659f44b2275ae92de5d1adf12dc161a6ef2 (diff) |
gnu: irrlicht: Use CC-FOR-TARGET.
* gnu/packages/games.scm (irrlicht)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index c5c3e8af18..ed9f93b1a0 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3588,7 +3588,9 @@ are primarily in English, however some in other languages are provided.") (mkdir-p (string-append out "/include"))))) (delete 'configure)) ; no configure script #:tests? #f ; no check target - #:make-flags '("CC=gcc" "sharedlib"))) + #:make-flags + (list (string-append "CC=" ,(cc-for-target)) + "sharedlib"))) (inputs `(("bzip2" ,bzip2) ("libjpeg" ,libjpeg-turbo) |