1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-09 22:50:34 +02:00

gnu: openldap: Use modify-phases.

* gnu/packages/openldap.scm (openldap)[arguments]: Use modify-phases syntax.
This commit is contained in:
Leo Famulari
2017-06-03 16:18:48 -04:00
parent 47415332d7
commit c9dba6c114

View File

@@ -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.")