guix-commits
[Top][All Lists]
Advanced

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

32/35: gnu: mdadm: Fix cross-compilation.


From: guix-commits
Subject: 32/35: gnu: mdadm: Fix cross-compilation.
Date: Thu, 10 Oct 2019 11:33:21 -0400 (EDT)

mothacehe pushed a commit to branch core-updates
in repository guix.

commit 7dbd3a8e3e9492dbe7338886d2bc1e23f917933f
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 351087e..461c019 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3503,8 +3503,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]