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 | 3f9d1530783b995941f6596cc0f72b51da67cfa3 (patch) | |
tree | 822039bb609941e22b92902ed1882c5785152d4d /eclass | |
parent | New version (fixes bug #90616). (diff) | |
download | historical-3f9d1530783b995941f6596cc0f72b51da67cfa3.tar.gz historical-3f9d1530783b995941f6596cc0f72b51da67cfa3.tar.bz2 historical-3f9d1530783b995941f6596cc0f72b51da67cfa3.zip |
Fixed chost/ctarget typo in the compiler confs on multilib archs.
Diffstat (limited to '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 |