guix-commits
[Top][All Lists]
Advanced

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

01/01: build-system: gnu: Fix cross-gcc call.


From: Ricardo Wurmus
Subject: 01/01: build-system: gnu: Fix cross-gcc call.
Date: Thu, 25 May 2017 11:02:35 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 3a62dd6b22c054f2e8d6df38d493def52020e714
Author: Ricardo Wurmus <address@hidden>
Date:   Thu May 25 16:58:15 2017 +0200

    build-system: gnu: Fix cross-gcc call.
    
    This is a follow-up to 7b3318e34f4e2743254a88b908859901db960e9a.
    
    * guix/build-system/gnu.scm (standard-cross-packages): Use keyword arguments
    in cross-gcc call.
---
 guix/build-system/gnu.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm
index 730e638..7cf0caf 100644
--- a/guix/build-system/gnu.scm
+++ b/guix/build-system/gnu.scm
@@ -403,8 +403,8 @@ is one of `host' or `target'."
       (case kind
         ((host)
          `(("cross-gcc" ,(gcc target
-                              (binutils target)
-                              (libc target)))
+                              #:xbinutils (binutils target)
+                              #:libc (libc target)))
            ("cross-binutils" ,(binutils target))))
         ((target)
          `(("cross-libc" ,(libc target))))))))



reply via email to

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