From 61081abbcda3817a0adfef891125786c3ba3a23a Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Wed, 6 Jul 2005 22:07:46 +0000 Subject: [PATCH] Changed to use linux32 for ppc32 support when build host is ppc64. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@758 d1e1f19c-881f-0410-ab34-b69fee027534 --- ChangeLog | 5 ++++- arch/ppc.py | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3a43242a..630f098e 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.295 2005/07/06 20:33:46 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.296 2005/07/06 22:07:46 wolf31o2 Exp $ + + 06 Jul 2005; Chris Gianelloni arch/ppc.py: + Changed to use linux32 for ppc32 support when build host is ppc64. 06 Jul 2005; Chris Gianelloni arch/mips.py, arch/x86.py: diff --git a/arch/ppc.py b/arch/ppc.py index b41bb5d9..583a05e6 100644 --- a/arch/ppc.py +++ b/arch/ppc.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/ppc.py,v 1.13 2005/07/05 21:53:41 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/arch/ppc.py,v 1.14 2005/07/06 22:07:46 wolf31o2 Exp $ import os,builder from catalyst_support import * @@ -17,9 +17,9 @@ class generic_ppc(builder.generic): self.settings["mainarch"]="ppc" self.settings["CHOST"]="powerpc-unknown-linux-gnu" if self.settings["hostarch"]=="ppc64": - if not os.path.exists("/usr/bin/powerpc32"): - raise CatalystError,"required /usr/bin/setarch executable not found." - self.settings["CHROOT"]="/usr/bin/powerpc32 chroot" + if not os.path.exists("/usr/bin/linux32"): + raise CatalystError,"required /usr/bin/linux32 executable not found." + self.settings["CHROOT"]="/usr/bin/linux32 chroot" else: self.settings["CHROOT"]="chroot" -- 2.26.2