diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-04-07 06:31:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-04-07 06:31:09 +0000 |
commit | 5b7d4a8e953339c229c63165cdfa4799ce3503a5 (patch) | |
tree | 4e645b34190a7d8563f857e7960f2e030c197e78 /eclass | |
parent | Added a patch for gcc 4.3 compatibility as kindly provided by Mikko C. on bug... (diff) | |
download | gentoo-2-5b7d4a8e953339c229c63165cdfa4799ce3503a5.tar.gz gentoo-2-5b7d4a8e953339c229c63165cdfa4799ce3503a5.tar.bz2 gentoo-2-5b7d4a8e953339c229c63165cdfa4799ce3503a5.zip |
fixup locale ranges in awk scripts #215828
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index e7b9978898a2..ec5f623c4fc5 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.348 2008/03/23 16:33:17 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.349 2008/04/07 06:31:09 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1102,6 +1102,7 @@ gcc_src_unpack() { || eerror "Please file a bug about this" eend $? done + sed -i 's|A-Za-z0-9|[:alnum:]|g' "${S}"/gcc/*.awk #215828 if [[ -x contrib/gcc_update ]] ; then einfo "Touching generated files" |