guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: util-linux: Remove cross-compilation workaround.


From: guix-commits
Subject: 02/03: gnu: util-linux: Remove cross-compilation workaround.
Date: Thu, 29 Jul 2021 08:14:11 -0400 (EDT)

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

commit cdd3141f195f7e9527988f35cc1066475a7ac40d
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Jul 29 13:51:04 2021 +0200

    gnu: util-linux: Remove cross-compilation workaround.
    
    * gnu/packages/linux.scm (util-linux)[arguments]: Look for /etc/services in
    both NATIVE-INPUTS and INPUTS, instead of by input label.  Remove unused 
variable.
    [inputs]: When cross-compiling, don't add NET-BASE.
---
 gnu/packages/linux.scm | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 416d294..d5ee180 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1787,13 +1787,13 @@ providing the system administrator with some help in 
common tasks.")
                           (("\"/bin/umount\"")
                            (string-append "\"" out "/bin/umount\""))))))
                   (add-before 'check 'pre-check
-                    (lambda* (#:key inputs outputs #:allow-other-keys)
-                      (let ((out (assoc-ref outputs "out"))
-                            (net (assoc-ref inputs "net-base")))
+                    (lambda* (#:key native-inputs inputs #:allow-other-keys)
+                      (let ((services (search-input-file (or native-inputs 
inputs)
+                                                         "etc/services")))
                         ;; Change the test to refer to the right file.
                         (substitute* "tests/ts/misc/mcookie"
                           (("/etc/services")
-                           (string-append net "/etc/services")))
+                           services))
 
                         ;; The C.UTF-8 locale does not exist in our libc.
                         (substitute* "tests/ts/column/invalid-multibyte"
@@ -1837,12 +1837,7 @@ providing the system administrator with some help in 
common tasks.")
                                                  "\\.pc$")
                           (("^(exec_)?prefix=.*") ""))))))))
     (inputs `(("zlib" ,zlib)
-              ("ncurses" ,ncurses)
-
-              ;; XXX: This is so that the 'pre-check' phase can find it.
-              ,@(if (%current-target-system)
-                    `(("net-base" ,net-base))
-                    '())))
+              ("ncurses" ,ncurses)))
     (native-inputs
      `(("perl" ,perl)
        ("net-base" ,net-base)))         ;for tests



reply via email to

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