From: Andrew Gaffney Date: Sun, 7 Dec 2008 20:14:47 +0000 (-0600) Subject: A few typo and other minor fixes as reported by armin76 X-Git-Tag: CATALYST_2_0_6_916~59 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b366f38b22f16ecc54332d23480f03de7df41029;p=catalyst.git A few typo and other minor fixes as reported by armin76 --- diff --git a/ChangeLog b/ChangeLog index fa662735..d5aca85b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # Copyright 2002-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney # Distributed under the GPL v2 + 07 Dec 2008; Andrew Gaffney arch/amd64.py, + arch/x86.py, catalyst: + A few typo and other minor fixes as reported by armin76 + 07 Dec 2008; Andrew Gaffney modules/generic_stage_target.py: Add support for digests="all" for gentoo bug #209611 diff --git a/arch/amd64.py b/arch/amd64.py index 40593cfc..868760ee 100644 --- a/arch/amd64.py +++ b/arch/amd64.py @@ -61,7 +61,7 @@ def register(): "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, diff --git a/arch/x86.py b/arch/x86.py index 9f3d39d3..324ed799 100644 --- a/arch/x86.py +++ b/arch/x86.py @@ -1,6 +1,6 @@ import builder,os -from catalyst_supportimport * +from catalyst_support import * class generic_x86(builder.generic): "abstract base class for all x86 builders" diff --git a/catalyst b/catalyst index 5473652a..0f08e34a 100755 --- a/catalyst +++ b/catalyst @@ -4,10 +4,13 @@ # Andrew Gaffney # Chris Gianelloni -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