From 13bbcf1b2d2668de6844b873683e0956e2f1ab58 Mon Sep 17 00:00:00 2001 From: sobomax Date: Sat, 18 Jun 2005 18:38:33 +0000 Subject: Use [:lower:]/[:upper:] instead of [a-z]/[A-Z] in tr(1), since the latter may not work in some locales. PR: 75193 Submitted by: Stuart Barkley --- net/asterisk12/Makefile | 2 +- net/asterisk12/files/patch-editline::makelist | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 net/asterisk12/files/patch-editline::makelist (limited to 'net/asterisk12') diff --git a/net/asterisk12/Makefile b/net/asterisk12/Makefile index 8e936ef47a12..a89c6518acd3 100644 --- a/net/asterisk12/Makefile +++ b/net/asterisk12/Makefile @@ -7,7 +7,7 @@ PORTNAME= asterisk PORTVERSION= 1.0.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MASTER_SITES= ftp://ftp.asterisk.org/pub/telephony/asterisk/ \ ftp://ftp.asterisk.org/pub/telephony/asterisk/old-releases/ diff --git a/net/asterisk12/files/patch-editline::makelist b/net/asterisk12/files/patch-editline::makelist new file mode 100644 index 000000000000..cff9b3ae29e0 --- /dev/null +++ b/net/asterisk12/files/patch-editline::makelist @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- editline/makelist ++++ editline/makelist +@@ -145,7 +145,7 @@ + # + -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"); -- cgit