From 3800bfb96256d2f4a8572520f81eedf17afa5888 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Sat, 1 Oct 2005 21:27:15 +0000 Subject: Fixed chost/ctarget typo in the compiler confs on multilib archs. --- eclass/toolchain.eclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'eclass/toolchain.eclass') 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 -- cgit v1.2.3-65-gdbad