guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: OpenLDAP: Remove cross-compilation workaround.


From: guix-commits
Subject: 03/04: gnu: OpenLDAP: Remove cross-compilation workaround.
Date: Thu, 6 Feb 2020 12:39:01 -0500 (EST)

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

commit fe994a0c328b456195fcf64443c28b2ca3f8da76
Author: Marius Bakke <address@hidden>
AuthorDate: Mon Feb 3 20:10:01 2020 +0100

    gnu: OpenLDAP: Remove cross-compilation workaround.
    
    This is no longer required since the update to 2.4.49 in commit
    090f33d6767dfc0b23d5e287369ec2dde331de01.
    
    * gnu/packages/openldap.scm (openldap)[native-inputs]: Remove AUTOMAKE.
    [arguments]: Remove 'fix-configure' phase.
---
 gnu/packages/openldap.scm | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm
index 107b923..60b5433 100644
--- a/gnu/packages/openldap.scm
+++ b/gnu/packages/openldap.scm
@@ -87,9 +87,7 @@
              ("zlib" ,zlib)))
    (native-inputs `(("libtool" ,libtool)
                     ("groff" ,groff)
-                    ("bdb" ,bdb-5.3)
-                    ;; For up to date 'config.guess' and 'config.sub'.
-                    ("automake" ,automake)))
+                    ("bdb" ,bdb-5.3)))
    (arguments
     `(#:tests? #f
       #:configure-flags
@@ -102,20 +100,6 @@
       #:make-flags '("STRIP=")
       #:phases
       (modify-phases %standard-phases
-        (add-after 'unpack 'fix-configure
-          (lambda* (#:key inputs native-inputs #:allow-other-keys)
-            ;; Replace outdated config.sub and config.guess:
-            (with-directory-excursion "build"
-              (for-each (lambda (file)
-                          (install-file (string-append
-                                         (assoc-ref
-                                          (or native-inputs inputs) "automake")
-                                         "/share/automake-"
-                                         ,(version-major+minor
-                                           (package-version automake))
-                                         "/" file) "."))
-                        '("config.sub" "config.guess")))
-            #t))
         ,@(if (%current-target-system)
               '((add-before 'configure 'fix-cross-gcc
                   (lambda* (#:key target #:allow-other-keys)



reply via email to

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