Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass
Date: Mon, 29 Dec 2008 16:40:57
Message-Id: E1LHLAk-0003E3-IQ@stork.gentoo.org
1 armin76 08/12/29 16:40:54
2
3 Modified: toolchain.eclass
4 Log:
5 Typo fixes, as pointed out by Zorry
6
7 Revision Changes Path
8 1.370 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.370&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?rev=1.370&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/toolchain.eclass?r1=1.369&r2=1.370
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.369
18 retrieving revision 1.370
19 diff -u -r1.369 -r1.370
20 --- toolchain.eclass 29 Dec 2008 02:24:18 -0000 1.369
21 +++ toolchain.eclass 29 Dec 2008 16:40:54 -0000 1.370
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/toolchain.eclass,v 1.369 2008/12/29 02:24:18 solar Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.370 2008/12/29 16:40:54 armin76 Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -1001,7 +1001,7 @@
31 # the necessary support
32 want_pie && use hardened && glibc_have_pie
33
34 - if use hardened && !want_minispecs ; then
35 + if use hardened && ! want_minispecs ; then
36 einfo "updating configuration to build hardened GCC"
37 make_gcc_hard || die "failed to make gcc hard"
38 fi
39 @@ -1650,7 +1650,7 @@
40
41 # Do not create multiple specs files for PIE+SSP if boundschecking is in
42 # USE, as we disable PIE+SSP when it is.
43 - if [[ ${ETYPE} == "gcc-compiler" ]] && want_split_specs && !want_minispecs; then
44 + if [[ ${ETYPE} == "gcc-compiler" ]] && want_split_specs && ! want_minispecs; then
45 split_out_specs_files || die "failed to split out specs"
46 fi