guix-commits
[Top][All Lists]
Advanced

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

54/64: gnu: mdadm: Fix cross-compilation.


From: guix-commits
Subject: 54/64: gnu: mdadm: Fix cross-compilation.
Date: Fri, 23 Aug 2019 04:10:24 -0400 (EDT)

mothacehe pushed a commit to branch wip-cross-system
in repository guix.

commit 78c3bc2dceeaa1e6711db1d4c44d6dd80a5cf867
Author: Mathieu Othacehe <address@hidden>
Date:   Sun Aug 18 13:01:17 2019 +0200

    gnu: mdadm: Fix cross-compilation.
    
    * gnu/packages/linux.scm (mdadm)[arguments]: Search for coreutils in both
    native-inputs and inputs.
---
 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 8b472f9..94354a2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3528,8 +3528,9 @@ MPEG-2 and audio over Linux IEEE 1394.")
        #:phases
        (modify-phases %standard-phases
          (add-before 'build 'patch-program-paths
-           (lambda* (#:key inputs #:allow-other-keys)
-             (let ((coreutils (assoc-ref inputs "coreutils")))
+           (lambda* (#:key native-inputs inputs #:allow-other-keys)
+             (let ((coreutils (assoc-ref (or native-inputs inputs)
+                                         "coreutils")))
                (substitute* "udev-md-raid-arrays.rules"
                  (("/usr/bin/(readlink|basename)" all program)
                   (string-append coreutils "/bin/" program))))



reply via email to

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