[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: sct: Prepare for cross-compilation.
From: |
guix-commits |
Subject: |
02/02: gnu: sct: Prepare for cross-compilation. |
Date: |
Tue, 2 Jun 2020 14:59:19 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 395659d86d98afaba4d311ca5618f49a4548f6ae
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Jun 2 20:56:43 2020 +0200
gnu: sct: Prepare for cross-compilation.
* gnu/packages/xdisorg.scm (sct)[arguments]: Use CC-FOR-TARGET.
---
gnu/packages/xdisorg.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 6087363..ee6b1a9 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -1922,8 +1922,9 @@ colors on all monitors attached to an XRandR-capable X11
display server.")
(base32 "0lrhx771iccbw04wrhj0ygids1pzmjfc4hvklm30m3p3flvhqf0m"))))
(build-system gnu-build-system)
(arguments
- '(#:make-flags (list "CC=gcc")
- #:tests? #f ; No tests exist.
+ `(#:make-flags
+ (list ,(string-append "CC=" (cc-for-target)))
+ #:tests? #f ; no test suite
#:phases
(modify-phases %standard-phases
(delete 'configure)