guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: i2c-tools: Fix cross-compilation.


From: guix-commits
Subject: branch master updated: gnu: i2c-tools: Fix cross-compilation.
Date: Mon, 10 Jan 2022 11:29:31 -0500

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d91de53caa gnu: i2c-tools: Fix cross-compilation.
d91de53caa is described below

commit d91de53caac386355f9bd15c79a8f02b4387f789
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Jan 10 17:28:41 2022 +0100

    gnu: i2c-tools: Fix cross-compilation.
    
    * gnu/packages/linux.scm (i2c-tools)[arguments]: Use #$output to fix
    cross-compilation.
---
 gnu/packages/linux.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 7b3996f770..9bc32832c6 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -4463,8 +4463,9 @@ create a firmware image suitable for the Linux kernel, 
and more.")
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no 'check' target
-       #:make-flags (list (string-append "prefix=" %output)
-                          ,(string-append "CC=" (cc-for-target)))
+       #:make-flags
+       ,#~(list (string-append "prefix=" #$output)
+                (string-append "CC=" #$(cc-for-target)))
        ;; No configure script.
        #:phases (modify-phases %standard-phases (delete 'configure))))
     (inputs



reply via email to

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