guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/07: gnu: libtermkey: Prepare for cross-compilation.


From: guix-commits
Subject: 01/07: gnu: libtermkey: Prepare for cross-compilation.
Date: Sun, 29 Nov 2020 17:16:11 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit ede2e1f43457ef91f208a555de0a659f0727a9e1
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Nov 29 21:21:29 2020 +0100

    gnu: libtermkey: Prepare for cross-compilation.
    
    * gnu/packages/terminals.scm (libtermkey)[arguments]: Use CC-FOR-TARGET.
---
 gnu/packages/terminals.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index f6ad900..4485987 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -48,6 +48,7 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix packages)
+  #:use-module (guix utils)
   #:use-module (gnu packages)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages check)
@@ -348,8 +349,8 @@ multi-seat support, a replacement for @command{mingetty}, 
and more.")
                (base32 
"0psd0kf10q5ixfima0mxz10syy7qq1ilz1npr0rz862xycvzgjyf"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:make-flags (list
-                     "CC=gcc"
+     `(#:make-flags (list
+                     (string-append "CC=" ,(cc-for-target))
                      (string-append "PREFIX=" (assoc-ref %outputs "out")))
        #:phases (modify-phases %standard-phases
                   (delete 'configure))  ; no configure script



reply via email to

[Prev in Thread] Current Thread [Next in Thread]