guix-commits
[Top][All Lists]
Advanced

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

05/12: gnu: lolcat: Fix cross-compilation.


From: guix-commits
Subject: 05/12: gnu: lolcat: Fix cross-compilation.
Date: Tue, 2 Jun 2020 14:50:47 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit e712b998aafef76b3f9fe00f8156fe4b725d6335
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Jun 2 19:15:03 2020 +0200

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

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index bf68c34..fc3569e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -626,8 +626,9 @@ tired of cows, a variety of other ASCII-art messengers are 
available.")
          (file-name (git-file-name name version))))
       (build-system gnu-build-system)
       (arguments
-       `(#:tests? #f ;; no check target
-         #:make-flags (list "CC=gcc")
+       `(#:tests? #f                    ; no check target
+         #:make-flags
+         (list ,(string-append "CC=" (cc-for-target)))
          #:phases
          (modify-phases %standard-phases
            (delete 'bootstrap)



reply via email to

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