guix-commits
[Top][All Lists]
Advanced

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

02/07: Revert "gnu: make-boot0: Set LOADLIBES for i686-linux."


From: Jan Nieuwenhuizen
Subject: 02/07: Revert "gnu: make-boot0: Set LOADLIBES for i686-linux."
Date: Fri, 31 Aug 2018 08:55:56 -0400 (EDT)

janneke pushed a commit to branch wip-bootstrap
in repository guix.

commit 30862216f12b8f5feaee4c7ebe67fbfac5c96a4d
Author: Jan Nieuwenhuizen <address@hidden>
Date:   Fri Aug 31 14:19:46 2018 +0200

    Revert "gnu: make-boot0: Set LOADLIBES for i686-linux."
    
    This reverts commit 8e1977169c1bdb1236c147c93bdfe2ac77c91bd5.
---
 gnu/packages/commencement.scm | 28 ++++++++++------------------
 1 file changed, 10 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index e0279cd..9ebf1b7 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1705,24 +1705,16 @@ exec " gcc "/bin/gcc"
         ,@(substitute-keyword-arguments (package-arguments gnu-make)
             ((#:phases phases)
              `(modify-phases ,phases
-                ,@(append
-                   (match (%current-system)
-                     ("i686-linux"
-                      '((add-before 'build 'configure-fixup
-                          (lambda _
-                            (substitute* "build.sh"
-                              (("^LOADLIBES=.*") "LOADLIBES='-ldl -lc 
-lnss_files -lnss_dns -lresolv'\n"))))))
-                     (_ '()))
-                   '((replace 'build
-                       (lambda _
-                         (invoke "./build.sh")
-                         #t))
-                     (replace 'install
-                       (lambda* (#:key outputs #:allow-other-keys)
-                         (let* ((out (assoc-ref outputs "out"))
-                                (bin (string-append out "/bin")))
-                           (install-file "make" bin)
-                           #t))))))))))
+                (replace 'build
+                  (lambda _
+                    (invoke "./build.sh")
+                    #t))
+                (replace 'install
+                  (lambda* (#:key outputs #:allow-other-keys)
+                    (let* ((out (assoc-ref outputs "out"))
+                           (bin (string-append out "/bin")))
+                      (install-file "make" bin)
+                      #t))))))))
      (native-inputs '())                ; no need for 'pkg-config'
      (inputs %bootstrap-inputs+toolchain))))
 



reply via email to

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