guix-commits
[Top][All Lists]
Advanced

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

04/13: gnu: filters: Prepare for cross-compilation.


From: guix-commits
Subject: 04/13: gnu: filters: Prepare for cross-compilation.
Date: Fri, 16 Oct 2020 11:51:51 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 834ab06477ff06ae8b3660bb6296ad0739036356
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Fri Oct 16 16:45:44 2020 +0200

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

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index 459c0c4..eb727a4 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2017, 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Jesse Gibbons <jgibbons2357+guix@gmail.com>
 ;;; Copyright © 2019, 2020 Timotej Lazar <timotej.lazar@araneo.si>
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
@@ -32,7 +32,8 @@
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
-  #:use-module (guix packages))
+  #:use-module (guix packages)
+  #:use-module (guix utils))
 
 (define-public sl
   (package
@@ -101,7 +102,8 @@ typing @command{sl} instead of @command{ls}.")
       (build-system gnu-build-system)
       (arguments
        `(#:make-flags
-         (list "CC=gcc" (string-append "DESTDIR=" %output))
+         (list (string-append "CC=" ,(cc-for-target))
+               (string-append "DESTDIR=" %output))
          #:phases
          (modify-phases %standard-phases
            (delete 'configure)



reply via email to

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