From: Chris Gianelloni Date: Tue, 11 Oct 2005 22:26:17 +0000 (+0000) Subject: Reverted default CHOST for x86 back to i386-pc-linux-gnu. X-Git-Tag: CATALYST_2_0_6_916~634 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=018b0ced7a0465a16fa0b670d39a0639393cdd9c;p=catalyst.git Reverted default CHOST for x86 back to i386-pc-linux-gnu. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@860 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 5982a85c..00488165 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.352 2005/10/11 22:12:19 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.353 2005/10/11 22:26:17 wolf31o2 Exp $ + + 11 Oct 2005; Chris Gianelloni arch/x86.py: + Reverted default CHOST for x86 back to i386-pc-linux-gnu. 11 Oct 2005; Chris Gianelloni targets/support/post-kmerge.sh: diff --git a/arch/x86.py b/arch/x86.py index 39071f7e..d9112715 100644 --- a/arch/x86.py +++ b/arch/x86.py @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.19 2005/09/12 17:17:21 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.20 2005/10/11 22:26:17 wolf31o2 Exp $ import builder,os from catalyst_support import * @@ -22,7 +22,7 @@ class arch_x86(generic_x86): def __init__(self,myspec): generic_x86.__init__(self,myspec) self.settings["CFLAGS"]="-O2 -mcpu=i686" - self.settings["CHOST"]="i686-pc-linux-gnu" + self.settings["CHOST"]="i386-pc-linux-gnu" class arch_i386(generic_x86): def __init__(self,myspec):