Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/libtool: libtool-2.2.6a.ebuild ChangeLog
Date: Sun, 28 Jun 2009 16:37:50
Message-Id: E1MKxO0-0005EZ-4x@stork.gentoo.org
1 vapier 09/06/28 16:37:48
2
3 Modified: libtool-2.2.6a.ebuild ChangeLog
4 Log:
5 Keep libtool from using /bin/sh even if it is bash so people can change on the fly without needing to re-emerge libtool.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 sys-devel/libtool/libtool-2.2.6a.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild?r1=1.3&r2=1.4
14
15 Index: libtool-2.2.6a.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- libtool-2.2.6a.ebuild 28 Nov 2008 22:41:19 -0000 1.3
22 +++ libtool-2.2.6a.ebuild 28 Jun 2009 16:37:48 -0000 1.4
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.3 2008/11/28 22:41:19 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.4 2009/06/28 16:37:48 vapier Exp $
29
30 LIBTOOLIZE="true" #225559
31 inherit eutils autotools
32 @@ -37,6 +37,12 @@
33 cd ..
34 eautoreconf
35 fi
36 +
37 + # the libtool script uses bash code in it and at configure time, tries
38 + # to find a bash shell. if /bin/sh is bash, it uses that. this can
39 + # cause problems for people who switch /bin/sh on the fly to other
40 + # shells, so just force libtool to use /bin/bash all the time.
41 + export CONFIG_SHELL=/bin/bash
42 }
43
44 src_install() {
45
46
47
48 1.142 sys-devel/libtool/ChangeLog
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.142&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.142&content-type=text/plain
52 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/libtool/ChangeLog?r1=1.141&r2=1.142
53
54 Index: ChangeLog
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v
57 retrieving revision 1.141
58 retrieving revision 1.142
59 diff -u -r1.141 -r1.142
60 --- ChangeLog 28 Nov 2008 22:41:19 -0000 1.141
61 +++ ChangeLog 28 Jun 2009 16:37:48 -0000 1.142
62 @@ -1,6 +1,10 @@
63 # ChangeLog for sys-devel/libtool
64 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
65 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.141 2008/11/28 22:41:19 ulm Exp $
66 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
67 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.142 2009/06/28 16:37:48 vapier Exp $
68 +
69 + 28 Jun 2009; Mike Frysinger <vapier@g.o> libtool-2.2.6a.ebuild:
70 + Keep libtool from using /bin/sh even if it is bash so people can change on
71 + the fly without needing to re-emerge libtool.
72
73 28 Nov 2008; Ulrich Mueller <ulm@g.o>
74 +files/2.2.6a/libtool-2.2.6a-gnuinfo.patch, libtool-2.2.6a.ebuild: