guix-commits
[Top][All Lists]
Advanced

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

06/14: gnu: blktrace: Prepare for cross-compilation.


From: guix-commits
Subject: 06/14: gnu: blktrace: Prepare for cross-compilation.
Date: Tue, 2 Jun 2020 20:21:46 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit ac68ab337cf09c99a71393002854f66ad495d2ee
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Jun 3 01:47:22 2020 +0200

    gnu: blktrace: Prepare for cross-compilation.
    
    * gnu/packages/linux.scm (blktrace)[arguments]: Use CC-FOR-TARGET.
---
 gnu/packages/linux.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 197e5ea..1e1ba78 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4331,12 +4331,13 @@ applications.")
                 (file-name (git-file-name name version))))
       (build-system gnu-build-system)
       (arguments
-       '(#:make-flags
-         (list "CC=gcc" (string-append "prefix=" %output))
-         #:tests? #f ; no tests
+       `(#:make-flags
+         (list ,(string-append "CC=" (cc-for-target))
+               (string-append "prefix=" %output))
+         #:tests? #f                    ; no tests
          #:phases
          (modify-phases %standard-phases
-           (delete 'configure) ; no configure script
+           (delete 'configure)          ; no configure script
            (add-after 'unpack 'fix-gnuplot-path
              (lambda* (#:key inputs #:allow-other-keys)
                (let ((gnuplot (assoc-ref inputs "gnuplot")))



reply via email to

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