# Copyright 2002-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney
# Distributed under the GPL v2
+ 07 Dec 2008; Andrew Gaffney <agaffney@gentoo.org> arch/amd64.py,
+ arch/x86.py, catalyst:
+ A few typo and other minor fixes as reported by armin76
+
07 Dec 2008; Andrew Gaffney <agaffney@gentoo.org>
modules/generic_stage_target.py:
Add support for digests="all" for gentoo bug #209611
"k8" : arch_k8,
"opteron" : arch_k8,
"athlon64" : arch_k8,
- "athlonfx" : arch_k8
+ "athlonfx" : arch_k8,
"nocona" : arch_nocona,
# uncomment when gcc 4.3 is stable and delete this line
# "core2" : arch_core2,
import builder,os
-from catalyst_supportimport *
+from catalyst_support import *
class generic_x86(builder.generic):
"abstract base class for all x86 builders"
# Andrew Gaffney <agaffney@gentoo.org>
# Chris Gianelloni <wolf31o2@gentoo.org>
-import os,sys,imp,string,getopt
+import os, sys, imp, string, getopt
import pdb
+import os.path
-sys.path.append("./modules")
+__selfpath__ = os.path.abspath(os.path.dirname(__file__))
+
+sys.path.append(__selfpath__ + "/modules")
import catalyst.config
import catalyst.util