Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass
Date: Sun, 12 Apr 2009 07:38:36
Message-Id: E1LsuGv-0003Zo-QA@stork.gentoo.org
1 vapier 09/04/12 07:38:33
2
3 Modified: autotools.eclass
4 Log:
5 set S when running elibtoolize so we get expected behavior #265319 by Michael Haubenwallner
6
7 Revision Changes Path
8 1.84 eclass/autotools.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?rev=1.84&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?rev=1.84&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/autotools.eclass?r1=1.83&r2=1.84
13
14 Index: autotools.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v
17 retrieving revision 1.83
18 retrieving revision 1.84
19 diff -u -r1.83 -r1.84
20 --- autotools.eclass 4 Apr 2009 17:45:42 -0000 1.83
21 +++ autotools.eclass 12 Apr 2009 07:38:33 -0000 1.84
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.83 2009/04/04 17:45:42 grobian Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.84 2009/04/12 07:38:33 vapier Exp $
27
28 # @ECLASS: autotools.eclass
29 # @MAINTAINER:
30 @@ -111,8 +111,8 @@
31 [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0
32
33 # Call it here to prevent failures due to elibtoolize called _before_
34 - # eautoreconf.
35 - elibtoolize
36 + # eautoreconf. We set $S because elibtoolize runs on that #265319
37 + S=${pwd} elibtoolize
38
39 return 0
40 }