diff options
author | Leo Famulari <leo@famulari.name> | 2017-06-03 16:18:48 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-06-04 14:57:59 -0400 |
commit | c9dba6c114580b0fabdb46bb9621c568c1958804 (patch) | |
tree | ffd3dec0e019cbe7a6070ac2362a1c7f033d7f4d /gnu/packages/openldap.scm | |
parent | 47415332d70cd9166b0914ce43018ae57083c120 (diff) | |
download | patches-c9dba6c114580b0fabdb46bb9621c568c1958804.tar patches-c9dba6c114580b0fabdb46bb9621c568c1958804.tar.gz |
gnu: openldap: Use modify-phases.
* gnu/packages/openldap.scm (openldap)[arguments]: Use modify-phases syntax.
Diffstat (limited to 'gnu/packages/openldap.scm')
-rw-r--r-- | gnu/packages/openldap.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm index a146ef378f..8d27ac9666 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.") |