diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-25 21:50:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-25 21:50:08 +0000 |
commit | 12f6e812078e0a6f43ec126ff91c53cbae991f1a (patch) | |
tree | 831957270d79bd18924df44a4a40fcc25a2a8a60 /eclass | |
parent | ok, since Debian is effectively the upstream, our stable versions will follow... (diff) | |
download | gentoo-2-12f6e812078e0a6f43ec126ff91c53cbae991f1a.tar.gz gentoo-2-12f6e812078e0a6f43ec126ff91c53cbae991f1a.tar.bz2 gentoo-2-12f6e812078e0a6f43ec126ff91c53cbae991f1a.zip |
fix avr multilib
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index f42e29f112aa..77b91fcb6b28 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.136 2005/03/24 14:44:26 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.137 2005/03/25 21:50:08 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -890,7 +890,7 @@ gcc-library-configure() { gcc-compiler-configure() { # multilib support - if is_multilib; then + if is_multilib || [[ ${CTARGET} == "avr" ]] ; then confgcc="${confgcc} --enable-multilib" else confgcc="${confgcc} --disable-multilib" |