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: toolchain-binutils.eclass
Date: Wed, 01 Dec 2010 11:22:24
Message-Id: 20101201112211.9312B20054@flycatcher.gentoo.org
1 vapier 10/12/01 11:22:11
2
3 Modified: toolchain-binutils.eclass
4 Log:
5 add --enable-plugins when ld/configure supports it
6
7 Revision Changes Path
8 1.92 eclass/toolchain-binutils.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain-binutils.eclass?rev=1.92&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain-binutils.eclass?rev=1.92&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain-binutils.eclass?r1=1.91&r2=1.92
13
14 Index: toolchain-binutils.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v
17 retrieving revision 1.91
18 retrieving revision 1.92
19 diff -u -r1.91 -r1.92
20 --- toolchain-binutils.eclass 19 Apr 2010 23:02:56 -0000 1.91
21 +++ toolchain-binutils.eclass 1 Dec 2010 11:22:11 -0000 1.92
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2010 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.91 2010/04/19 23:02:56 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.92 2010/12/01 11:22:11 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29 #
30 @@ -201,6 +201,9 @@
31 elif grep -q 'enable-gold=both/bfd' "${S}"/configure ; then
32 myconf="${myconf} --enable-gold=both/bfd"
33 fi
34 + if grep -q -e '--enable-plugins' "${S}"/ld/configure ; then
35 + myconf="${myconf} --enable-plugins"
36 + fi
37 use nls \
38 && myconf="${myconf} --without-included-gettext" \
39 || myconf="${myconf} --disable-nls"