summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2005-01-16 09:20:08 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2005-01-16 09:20:08 +0000
commit8c1a28984d606bbc95feea20d0b85a03ae675dc1 (patch)
tree1bfab5528b23d246c4f9df66d046a7285e0dfcea /eclass
parenttypo fix. (diff)
downloadgentoo-2-8c1a28984d606bbc95feea20d0b85a03ae675dc1.tar.gz
gentoo-2-8c1a28984d606bbc95feea20d0b85a03ae675dc1.tar.bz2
gentoo-2-8c1a28984d606bbc95feea20d0b85a03ae675dc1.zip
workaround broken tc-arch.
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 727c61501eb0..0b6984c68151 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.82 2005/01/16 09:16:25 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.83 2005/01/16 09:20:08 eradicator Exp $
HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html"
LICENSE="GPL-2 LGPL-2.1"
@@ -743,9 +743,9 @@ gcc_src_unpack() {
${ETYPE}_src_unpack || die "failed to ${ETYPE}_src_unpack"
- einfo "$(tc-arch)"
+ #einfo "$(tc-arch)" # VAPIER: this gives me "wtf"... changing below to '${ARCH}'
- if [[ $(tc-arch) == "amd64" ]] \
+ if [[ "${ARCH}" == "amd64" ]] \
&& [[ -z ${SKIP_MULTILIB_HACK} ]] && use multilib
then
disgusting_gcc_multilib_HACK || die "multilib hack failed"