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.eclass
Date: Sat, 03 Dec 2011 20:46:00
Message-Id: 20111203204545.A2AC32004C@flycatcher.gentoo.org
1 vapier 11/12/03 20:45:45
2
3 Modified: toolchain.eclass
4 Log:
5 drop now unused exclude_gcc_patches/GENTOO_PATCH_EXCLUDE logic
6
7 Revision Changes Path
8 1.489 eclass/toolchain.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.489&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.489&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.488&r2=1.489
13
14 Index: toolchain.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v
17 retrieving revision 1.488
18 retrieving revision 1.489
19 diff -u -r1.488 -r1.489
20 --- toolchain.eclass 3 Dec 2011 20:43:51 -0000 1.488
21 +++ toolchain.eclass 3 Dec 2011 20:45:45 -0000 1.489
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2011 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.488 2011/12/03 20:43:51 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.489 2011/12/03 20:45:45 vapier Exp $
27 #
28 # Maintainer: Toolchain Ninjas <toolchain@g.o>
29
30 @@ -883,7 +883,6 @@
31 [[ -z ${UCLIBC_VER} ]] && [[ ${CTARGET} == *-uclibc* ]] && die "Sorry, this version does not support uClibc"
32
33 [[ -z ${GCC_SVN} ]] && gcc_quick_unpack
34 - exclude_gcc_patches
35
36 cd "${S}"
37
38 @@ -1931,20 +1930,6 @@
39 popd > /dev/null
40 }
41
42 -# Exclude any unwanted patches, as specified by the following variables:
43 -#
44 -# GENTOO_PATCH_EXCLUDE
45 -# List of filenames, relative to ${WORKDIR}/patch/
46 -exclude_gcc_patches() {
47 - local i
48 - for i in ${GENTOO_PATCH_EXCLUDE} ; do
49 - if [[ -f ${WORKDIR}/patch/${i} ]] ; then
50 - einfo "Excluding patch ${i}"
51 - rm -f "${WORKDIR}"/patch/${i} || die "failed to delete ${i}"
52 - fi
53 - done
54 -}
55 -
56 do_gcc_HTB_patches() {
57 want_boundschecking || return 0