# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.638 2006/06/22 14:54:27 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.639 2006/06/28 12:48:22 wolf31o2 Exp $
+
+ 28 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> arch/ppc.py,
+ arch/x86.py:
+ Fixed invocation of linux32 for x86 and ppc. This is for bug #138080.
22 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
modules/generic_stage_target.py:
# 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.17 2006/01/11 23:27:52 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/arch/ppc.py,v 1.18 2006/06/28 12:48:22 wolf31o2 Exp $
import os,builder
from catalyst_support import *
self.settings["mainarch"]="ppc"
self.settings["CHOST"]="powerpc-unknown-linux-gnu"
if self.settings["hostarch"]=="ppc64":
- if not os.path.exists("/usr/bin/linux32"):
- raise CatalystError,"required /usr/bin/linux32 executable not found."
- self.settings["CHROOT"]="/usr/bin/linux32 chroot"
+ if not os.path.exists("/bin/linux32"):
+ raise CatalystError,"required /bin/linux32 executable not found (\"emerge setarch\" to fix."
+ self.settings["CHROOT"]="linux32 chroot"
else:
self.settings["CHROOT"]="chroot"
# 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.23 2006/01/23 23:09:51 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.24 2006/06/28 12:48:22 wolf31o2 Exp $
import builder,os
from catalyst_support import *
self.settings["mainarch"]="x86"
if self.settings["hostarch"]=="amd64":
if not os.path.exists("/bin/linux32"):
- raise CatalystError,"required /bin/linux32 executable not found (\"emerge linux32\" to fix.)"
+ raise CatalystError,"required /bin/linux32 executable not found (\"emerge setarch\" to fix.)"
self.settings["CHROOT"]="linux32 chroot"
else:
self.settings["CHROOT"]="chroot"