From e5c7e5df97c82f670ec272f329bddc2bd449bc63 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Sun, 30 Apr 2006 11:19:04 +0000 Subject: [PATCH] ensure that the script output is correctly generated when the system's character set does not use the English lowercase/uppercase character groups git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@23580 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- editline/makelist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editline/makelist b/editline/makelist index 8e9835309d..36f434cd05 100644 --- a/editline/makelist +++ b/editline/makelist @@ -145,7 +145,7 @@ case $FLAG in # -fh) cat $FILES | $AWK '/el_action_t/ { print $3 }' | \ - sort | tr '[a-z]' '[A-Z]' | $AWK ' + sort | tr '[:lower:]' '[:upper:]' | $AWK ' BEGIN { printf("/* Automatically generated file, do not edit */\n"); printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");