From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHYZS-0002GJ-D0 for guix-patches@gnu.org; Sun, 04 Jun 2017 12:40:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHYZP-0001Al-2y for guix-patches@gnu.org; Sun, 04 Jun 2017 12:40:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53353) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHYZN-00019i-Re for guix-patches@gnu.org; Sun, 04 Jun 2017 12:40:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dHYZN-0007yn-Ma for guix-patches@gnu.org; Sun, 04 Jun 2017 12:40:01 -0400 Subject: bug#27220: [PATCH 2/3] gnu: openldap: Use modify-phases. Resent-Message-ID: Date: Sun, 4 Jun 2017 12:39:47 -0400 From: Leo Famulari Message-ID: <20170604163947.GE14880@jasmine> References: <87vaobyj0g.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="TybLhxa8M7aNoW+V" Content-Disposition: inline In-Reply-To: <87vaobyj0g.fsf@fastmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 27220@debbugs.gnu.org --TybLhxa8M7aNoW+V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 04, 2017 at 03:33:51PM +0200, Marius Bakke wrote: > Leo Famulari writes: >=20 > > * gnu/packages/openldap.scm (openldap)[arguments]: Use modify-phases sy= ntax. > > --- > > 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")))))) >=20 > Add a #t at the end of this phase while at it. Okay, will do. Looking at this phase more closely, I wonder if it's doing the right thing. Copying libtool into the build tree? That's unusual... --TybLhxa8M7aNoW+V Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlk0N9MACgkQJkb6MLrK fwisJw/9HBn30xVhEaK1UKrLDVjsUtyEASnbkQJ2EEyJPJatiUjHwBBNCBkp26r5 mWhsK4p3mOkPycH+q2HdiFcD0N1PJMHil18pcc/FFQNzNvaXPfZDQtA/GitqQA7/ UM62FKIjbKW3MMV1DiNEelz9wJOXRDL1gJfsuzKiAFp6gjIyAvz9qOB9gEwmDhGK UE+kgMAExN1vKkyzg5JYjhCB+zDNEqBMg55huJpQjzR1dQAyre95Pb9TVseQZcTX S02wrzwnTRY00OyMDS6XXVj85tcrxdpo/h58VnMDD2vXpJYzYZu5ldHmfo1rrhMr h2q5YiS0lQZlM/r4T2AOq+awVBGvSyjU9C5o8Jfs7wvpCQHFFrB4vkpsy3xVEEEy NsE3zne3BVHftmBN/6iANjmZdYJSxCn6ZXpo0xv0t46XRJ4bCp42Z2uOgUbgEtDN 5NwMojQO3T/jUEIjwYZoKi+oxRz6E2JYYglr4NXFgBlmO4rP871rej4dehlS4j6/ ngHbWykz78/t66EXr+JG+tcpDCRPPJ8Cg+VmRceyLRbI4gU8mbcucRqhIm7MxIwp pBmi/sxc+Y4joGZGuV85pqynJ1FsPoIqxdKl9XHDdCHqnO3DyR+fRFdDTjkIlWFL 0dB7RKBZXpG090+Mr2rRnnichR2wypbKqCHyOnrTdTkTqHGa7pA= =5VAm -----END PGP SIGNATURE----- --TybLhxa8M7aNoW+V--