Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog autotools.eclass
Date: Tue, 05 Jun 2012 18:32:12
Message-Id: 20120605183155.1672B2004B@flycatcher.gentoo.org
1 grobian 12/06/05 18:31:54
2
3 Modified: ChangeLog autotools.eclass
4 Log:
5 Avoid type -P output for glibtoolize, bug #419641
6
7 Revision Changes Path
8 1.290 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.290&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.290&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.289&r2=1.290
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.289
18 retrieving revision 1.290
19 diff -u -r1.289 -r1.290
20 --- ChangeLog 5 Jun 2012 17:40:12 -0000 1.289
21 +++ ChangeLog 5 Jun 2012 18:31:54 -0000 1.290
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.289 2012/06/05 17:40:12 hasufell Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.290 2012/06/05 18:31:54 grobian Exp $
27 +
28 + 05 Jun 2012; Fabian Groffen <grobian@g.o> autotools.eclass:
29 + Avoid type -P output for glibtoolize, bug #419641
30
31 05 Jun 2012; Julian Ospald <hasufell@g.o> eutils.eclass:
32 enhanced functionality of doicon/newicon in eutils.eclass
33
34
35
36 1.143 eclass/autotools.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.143&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.143&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.142&r2=1.143
41
42 Index: autotools.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v
45 retrieving revision 1.142
46 retrieving revision 1.143
47 diff -u -r1.142 -r1.143
48 --- autotools.eclass 24 May 2012 01:13:32 -0000 1.142
49 +++ autotools.eclass 5 Jun 2012 18:31:54 -0000 1.143
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.142 2012/05/24 01:13:32 vapier Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.143 2012/06/05 18:31:54 grobian Exp $
55
56 # @ECLASS: autotools.eclass
57 # @MAINTAINER:
58 @@ -276,7 +276,7 @@
59 # Note the '_' prefix .. to not collide with elibtoolize() from libtool.eclass.
60 _elibtoolize() {
61 local LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
62 - type -P glibtoolize && LIBTOOLIZE=glibtoolize
63 + type -P glibtoolize > /dev/null && LIBTOOLIZE=glibtoolize
64
65 [[ -f GNUmakefile.am || -f Makefile.am ]] && set -- "$@" --automake
66 if [[ $1 == "--install" ]] ; then