diff options
author | ru <ru@FreeBSD.org> | 2002-11-25 09:00:05 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-11-25 09:00:05 +0000 |
commit | 91465e107340ff08838dd9931ebef3309d90eb7e (patch) | |
tree | e6b8ee696324f5997eb7f4ff2701f64739979f5e /usr.bin/getconf | |
parent | cf37aafd3073334e2b7116f81489c185f7928b33 (diff) | |
download | FreeBSD-src-91465e107340ff08838dd9931ebef3309d90eb7e.zip FreeBSD-src-91465e107340ff08838dd9931ebef3309d90eb7e.tar.gz |
Make this work under non-C locales.
PR: misc/45460
Approved by: re
Diffstat (limited to 'usr.bin/getconf')
-rw-r--r-- | usr.bin/getconf/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/getconf/Makefile b/usr.bin/getconf/Makefile index 275b4f2..eaaf628 100644 --- a/usr.bin/getconf/Makefile +++ b/usr.bin/getconf/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD$ PROG= getconf @@ -14,10 +14,11 @@ CLEANFILES+= confstr.c limits.c pathconf.c progenv.c sysconf.c \ all: conflicts .gperf.c: - awk -f ${.CURDIR}/fake-gperf.awk ${.IMPSRC} >${.TARGET} + LC_ALL=C awk -f ${.CURDIR}/fake-gperf.awk ${.IMPSRC} >${.TARGET} .gperf.names: - awk '/^[_A-Z]/ { print; }' ${.IMPSRC} | sed -e 's/,$$//' >${.TARGET} + LC_ALL=C awk '/^[_A-Z]/ { print; }' ${.IMPSRC} | \ + sed -e 's/,$$//' >${.TARGET} conflicts: conflicting.names unique.names @if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \ @@ -31,6 +32,6 @@ conflicting.names: confstr.names limits.names sysconf.names cat ${.ALLSRC} >${.TARGET} unique.names: conflicting.names - sort -u ${.ALLSRC} >${.TARGET} + LC_ALL=C sort -u ${.ALLSRC} >${.TARGET} .include <bsd.prog.mk> |