diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-29 14:26:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-29 17:28:40 +0100 |
commit | fa50a8bc7cfcdd2e3bd444c670902758f266425f (patch) | |
tree | 6afa51b8a577ef7d9142f4df44540da441cfba53 /gnu/packages | |
parent | 166347985516e9ab6d3246e3b0dea6e642c53d00 (diff) |
gnu: cwm: Prepare for cross-compilation.
* gnu/packages/wm.scm (cwm)[arguments]: Use CC-FOR-TARGET.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/wm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index df4d3483ce..b21ac6f046 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1216,7 +1216,7 @@ It is inspired by Xmonad and dwm. Its major features include: (base32 "022zld29qawd8gl700g4m24qa89il3aks397zkhh66wvzssdblzx")))) (build-system gnu-build-system) (arguments - `(#:make-flags (list "CC=gcc" + `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "PREFIX=" %output)) #:tests? #f #:phases |