Leo Famulari writes: > * gnu/packages/openldap.scm (openldap)[arguments]: Use modify-phases syntax. > --- > gnu/packages/openldap.scm | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm > index a146ef378..3fd19632b 100644 > --- a/gnu/packages/openldap.scm > +++ b/gnu/packages/openldap.scm > @@ -70,10 +70,9 @@ > (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")))))) Add a #t at the end of this phase while at it.