diff options
author | ache <ache@FreeBSD.org> | 2003-08-04 14:32:56 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2003-08-04 14:32:56 +0000 |
commit | c63e547aed16652c79a54a9a44fbcc618ae56d7c (patch) | |
tree | 09b060338da1e68ab96b9d2cacfd43f3df8f6655 /sbin/route | |
parent | 3cc2a731d243e9ffa17daac04b6f303055a807d8 (diff) | |
download | FreeBSD-src-c63e547aed16652c79a54a9a44fbcc618ae56d7c.zip FreeBSD-src-c63e547aed16652c79a54a9a44fbcc618ae56d7c.tar.gz |
Use tr '[:lower:]' '[:upper:]' to work with any locale
Diffstat (limited to 'sbin/route')
-rw-r--r-- | sbin/route/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/route/Makefile b/sbin/route/Makefile index d9835cf..5f8b501 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 a-z A-Z < _keywords.tmp | paste _keywords.tmp - | \ + tr '[:lower:]' '[:upper:]' < _keywords.tmp | paste _keywords.tmp - | \ awk '{ \ if (NF > 1) \ printf "#define\tK_%s\t%d\n\t{\"%s\", K_%s},\n", \ |