summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2010-02-28 18:26:53 +0000
committerRaúl Porcel <armin76@gentoo.org>2010-02-28 18:26:53 +0000
commit9e5cf559842f501a7062c0738f725b3873ae0816 (patch)
tree5107cc37660ceac7a49b7e2c669cba06b5d76986 /eclass
parentStable for PPC (bug #306865). (diff)
downloadgentoo-2-9e5cf559842f501a7062c0738f725b3873ae0816.tar.gz
gentoo-2-9e5cf559842f501a7062c0738f725b3873ae0816.tar.bz2
gentoo-2-9e5cf559842f501a7062c0738f725b3873ae0816.zip
Typo
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 6b0c1d9ef211..7009b3ecd72b 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.417 2010/02/27 20:54:35 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.418 2010/02/28 18:26:53 armin76 Exp $
#
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@@ -1236,9 +1236,9 @@ gcc-compiler-configure() {
# Convert armv7{a,r,m} to armv7-{a,r,m}
[[ ! -z "${arm_arch##armv7}" ]] && arm_arch="${arm_arch/armv7/armv7-}"
# Remove 'l'
- [[ -z "${arm_arch##armv*l}" ]] && arch="${arm_arch/l/}"
+ [[ -z "${arm_arch##armv*l}" ]] && arm_arch="${arm_arch/l/}"
# Remove 'eb'
- [[ -z "${arm_arch##armv*eb}" ]] && arch="${arm_arch/eb/}"
+ [[ -z "${arm_arch##armv*eb}" ]] && arm_arch="${arm_arch/eb/}"
confgcc="${confgcc} --with-arch=${arm_arch}"
;;
# Add --with-abi flags to set default MIPS ABI