diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-01 21:27:15 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-10-01 21:27:15 +0000 |
commit | 3800bfb96256d2f4a8572520f81eedf17afa5888 (patch) | |
tree | d95769fe3a58462f20494e6154a0a3d8db2ef6ae /eclass/toolchain.eclass | |
parent | New version (fixes bug #90616). (diff) | |
download | gentoo-2-3800bfb96256d2f4a8572520f81eedf17afa5888.tar.gz gentoo-2-3800bfb96256d2f4a8572520f81eedf17afa5888.tar.bz2 gentoo-2-3800bfb96256d2f4a8572520f81eedf17afa5888.zip |
Fixed chost/ctarget typo in the compiler confs on multilib archs.
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 96822ccfd3df..5335552855f0 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.197 2005/09/25 12:30:26 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.198 2005/10/01 21:27:15 eradicator Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -725,13 +725,13 @@ add_profile_eselect_conf() { echo "[${abi}-${specs}]" >> ${compiler_config_file} var="CTARGET_${abi}" if [[ -n ${!var} ]] ; then - echo " chost=${!var}" >> ${compiler_config_file} + echo " ctarget=${!var}" >> ${compiler_config_file} else var="CHOST_${abi}" if [[ -n ${!var} ]] ; then - echo " chost=${!var}" >> ${compiler_config_file} + echo " ctarget=${!var}" >> ${compiler_config_file} else - echo " chost=${CTARGET}" >> ${compiler_config_file} + echo " ctarget=${CTARGET}" >> ${compiler_config_file} fi fi fi |