diff options
author | 2008-12-07 14:14:47 -0600 | |
---|---|---|
committer | 2008-12-07 14:14:47 -0600 | |
commit | b366f38b22f16ecc54332d23480f03de7df41029 (patch) | |
tree | 5d9e3f70f13064949047d40011cbbe151f9dc1f4 /arch | |
parent | Add support for digests="all" for gentoo bug #209611 (diff) | |
download | catalyst-b366f38b22f16ecc54332d23480f03de7df41029.tar.gz catalyst-b366f38b22f16ecc54332d23480f03de7df41029.tar.bz2 catalyst-b366f38b22f16ecc54332d23480f03de7df41029.zip |
A few typo and other minor fixes as reported by armin76
Diffstat (limited to 'arch')
-rw-r--r-- | arch/amd64.py | 2 | ||||
-rw-r--r-- | arch/x86.py | 2 |
2 files changed, 2 insertions, 2 deletions
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" |