diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:56 +0200 |
commit | 86123955543be653f5631620f478561f07333e55 (patch) | |
tree | 1213d7ae65a6d0c1f4a904e04715d118db2bc81b /gnu/packages/game-development.scm | |
parent | 5456a144c70ec11723b7400d9c47ea3abdcf8eed (diff) | |
download | guix-86123955543be653f5631620f478561f07333e55.tar.gz |
gnu: ioquake3: Prepare for cross-compilation.
* gnu/packages/game-development.scm (ioquake3)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r-- | gnu/packages/game-development.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 0a78ec6ad2..397abadc5d 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -2168,7 +2168,7 @@ of the others") (list #:tests? #f ; no tests #:make-flags - #~(list "CC=gcc" + #~(list (string-append "CC=" #$(cc-for-target)) "USE_INTERNAL_LIBS=0" "USE_FREETYPE=1" "USE_RENDERER_DLOPEN=0" |