From e452c1ad2a9a8c4cbb3703d6dadafbb833b591b5 Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 4 Aug 2003 15:25:39 +0000 Subject: =?UTF-8?q?Fix=20problem=20differently,=20use=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=C2=81=20LANG=3DC=20tr=20'a-z'=20'A-Z'=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20=20=20=20=20=20=C2=81=20for=20hypotetical=20case=20tha?= =?UTF-8?q?t=20script=20may=20generate=20non-ascii=20characters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sbin/route/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/route/Makefile b/sbin/route/Makefile index 5f8b501..2e423ee 100644 --- a/sbin/route/Makefile +++ b/sbin/route/Makefile @@ -11,7 +11,7 @@ CLEANFILES+=keywords.h _keywords.tmp keywords.h: keywords sed -e '/^#/d' -e '/^$$/d' ${.CURDIR}/keywords > _keywords.tmp - tr '[:lower:]' '[:upper:]' < _keywords.tmp | paste _keywords.tmp - | \ + LANG=C tr 'a-z' 'A-Z' < _keywords.tmp | paste _keywords.tmp - | \ awk '{ \ if (NF > 1) \ printf "#define\tK_%s\t%d\n\t{\"%s\", K_%s},\n", \ -- cgit v1.1