diff options
author | abs <abs> | 2009-03-12 23:57:28 +0000 |
---|---|---|
committer | abs <abs> | 2009-03-12 23:57:28 +0000 |
commit | 369a6ac432d13b69c2083583539861af276dfd33 (patch) | |
tree | 80f6a0ce555adeda69e1c32dc7f9a653dbe79092 /devel/cpuflags | |
parent | 2bc47255463f6925c87644461a17ad09972d50a3 (diff) | |
download | pkgsrc-369a6ac432d13b69c2083583539861af276dfd33.tar.gz |
Updated devel/cpuflags to 1.40
Doublequote the eval arguments to ensure whitespace is preserved, so
a cpu_brand of "Genuine Intel(R) CPU T2500 @ 2.00GHz"
is not converted down to "Genuine Intel(R) CPU T2500 @ 2.00GHz"
Diffstat (limited to 'devel/cpuflags')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/subr_NetBSD | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 0a7ef9ac949..32dec73c215 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.145 2009/03/04 00:32:44 abs Exp $ +# $NetBSD: Makefile,v 1.146 2009/03/12 23:57:28 abs Exp $ -DISTNAME= cpuflags-1.39 +DISTNAME= cpuflags-1.40 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_NetBSD b/devel/cpuflags/files/subr_NetBSD index 79035c2eaf0..efd05ccfd23 100755 --- a/devel/cpuflags/files/subr_NetBSD +++ b/devel/cpuflags/files/subr_NetBSD @@ -1,4 +1,4 @@ -# $NetBSD: subr_NetBSD,v 1.10 2009/01/09 12:54:15 abs Exp $ +# $NetBSD: subr_NetBSD,v 1.11 2009/03/12 23:57:28 abs Exp $ AWK=awk SED=sed @@ -28,7 +28,7 @@ extract_hw_details() else cpu_details="$(grep ^cpu0: /var/run/dmesg.boot)" fi - eval $(extract_x86_cpu_vars) + eval "$(extract_x86_cpu_vars)" fi # We're almost certainly crosscompiling |