diff options
author | dogcow <dogcow@pkgsrc.org> | 2006-05-16 16:43:10 +0000 |
---|---|---|
committer | dogcow <dogcow@pkgsrc.org> | 2006-05-16 16:43:10 +0000 |
commit | 68052c76fed7c9b352b0fe8b1a2ff02d7402c34d (patch) | |
tree | b6a4252581b1329e9308435ff0a1cd3a159a1fcd | |
parent | e4d892b2e31bd790bdbe7a09904a72ad29935285 (diff) | |
download | pkgsrc-68052c76fed7c9b352b0fe8b1a2ff02d7402c34d.tar.gz |
Pentium-M should be scheduled as pentium-m, not pentium4m.
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 4518aa6c4db..78de6ba5459 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.101 2006/02/09 13:45:04 abs Exp $ +# $NetBSD: Makefile,v 1.102 2006/05/16 16:43:10 dogcow Exp $ # -DISTNAME= cpuflags-0.98 +DISTNAME= cpuflags-0.99 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index 8f095087bc4..87565f7497f 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.63 2006/02/04 15:08:33 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.64 2006/05/16 16:43:10 dogcow Exp $ PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH AWK=awk @@ -69,8 +69,8 @@ case $hw_machine_arch in *Intel\ Pentium\ III\ *) FLAGS='-march=pentium3' ;; *Intel\ Mobile\ Pentium\ III\ *) FLAGS='-march=pentium3' ;; *Intel\ Celeron\ \(Mendocino\)\ *) FLAGS='-march=pentium3 -mno-sse' ;; - *Intel\ Pentium\ M\ \(\Dothan\)\ *) FLAGS='-march=pentium4m' ;; - *Intel\ Pentium\ M\ *) FLAGS='-march=pentium3m' ;; + *Intel\ Pentium\ M\ \(\Dothan\)\ *) FLAGS='-march=pentium-m' ;; + *Intel\ Pentium\ M\ *) FLAGS='-march=pentium-m' ;; *Intel\ Mobile\ Pentium\ 4\ *) FLAGS='-march=pentium4m' ;; *Intel\ Pentium\ 4\ *) FLAGS='-march=pentium4' ;; *VIA\ C3*\ *) FLAGS='-march=c3' ;; |