aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2020-03-28 19:02:53 -0700
committerMatt Turner <mattst88@gentoo.org>2020-03-29 10:48:21 -0700
commita653540d003abf94776b526f4c76730af4ca0048 (patch)
tree8d88bfb6a4591e0b2e3abc39061d70a2b328df3c
parentcatalyst: Skip "maybe_tmpfs" directory creation (diff)
downloadcatalyst-a653540d.tar.gz
catalyst-a653540d.tar.bz2
catalyst-a653540d.zip
catalyst: Fix "3DNow!" capitalization
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r--catalyst/arch/x86.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
index e00b2684..de9142f7 100644
--- a/catalyst/arch/x86.py
+++ b/catalyst/arch/x86.py
@@ -95,21 +95,21 @@ class arch_k6(generic_x86):
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx"]}
class arch_k6_2(generic_x86):
- "AMD K6-2 CPU with MMX and 3dNOW! support"
+ "AMD K6-2 CPU with MMX and 3DNow! support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k6-2 -pipe"
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
class arch_athlon(generic_x86):
- "AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch support"
+ "AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and SSE prefetch support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon -pipe"
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
class arch_athlon_xp(generic_x86):
- "improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE support"
+ "improved AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and full SSE support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon-xp -pipe"