guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: openldap: Use modify-phases.


From: Leo Famulari
Subject: 04/05: gnu: openldap: Use modify-phases.
Date: Sun, 4 Jun 2017 15:16:20 -0400 (EDT)

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

commit c9dba6c114580b0fabdb46bb9621c568c1958804
Author: Leo Famulari <address@hidden>
Date:   Sat Jun 3 16:18:48 2017 -0400

    gnu: openldap: Use modify-phases.
    
    * gnu/packages/openldap.scm (openldap)[arguments]: Use modify-phases syntax.
---
 gnu/packages/openldap.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm
index a146ef3..8d27ac9 100644
--- a/gnu/packages/openldap.scm
+++ b/gnu/packages/openldap.scm
@@ -70,10 +70,10 @@
    (arguments
     `(#:tests? #f
       #:phases
-       (alist-cons-after
-        'configure 'provide-libtool
-        (lambda _ (copy-file (which "libtool") "libtool"))
-       %standard-phases)))
+      (modify-phases %standard-phases
+        (add-after 'configure 'provide-libtool
+          (lambda _ (copy-file (which "libtool") "libtool")
+            #t)))))
    (synopsis "Implementation of the Lightweight Directory Access Protocol")
    (description
     "OpenLDAP is a free implementation of the Lightweight Directory Access 
Protocol.")



reply via email to

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