From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 23509138351 for ; Sun, 29 Mar 2020 17:48:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26427E09E7; Sun, 29 Mar 2020 17:48:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 062B7E09E7 for ; Sun, 29 Mar 2020 17:48:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFBA234F53B for ; Sun, 29 Mar 2020 17:48:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D1951A9 for ; Sun, 29 Mar 2020 17:48:47 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585504101.a653540d003abf94776b526f4c76730af4ca0048.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/x86.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a653540d003abf94776b526f4c76730af4ca0048 X-VCS-Branch: master Date: Sun, 29 Mar 2020 17:48:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b3e12dec-c543-4292-b119-69edc491a688 X-Archives-Hash: 6fb99edd70a0ad098ceeceb6fc10db99 commit: a653540d003abf94776b526f4c76730af4ca0048 Author: Matt Turner gentoo org> AuthorDate: Sun Mar 29 02:02:53 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Mar 29 17:48:21 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a653540d catalyst: Fix "3DNow!" capitalization Signed-off-by: Matt Turner gentoo.org> catalyst/arch/x86.py | 6 +++--- 1 file 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"