From 816a4f680343f2d1446b5771e376c9ec9726f6b4 Mon Sep 17 00:00:00 2001 From: seanbright Date: Tue, 10 Jun 2008 18:35:37 +0000 Subject: Merged revisions 121596 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r121596 | seanbright | 2008-06-10 14:34:45 -0400 (Tue, 10 Jun 2008) | 6 lines Fixes a problem with some buggy versions of GNU awk (3.1.3) not liking carriage returns in scripts. (closes issue #12749) Reported by: alinux Tested by: Laureano (on #asterisk-dev), juggie ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@121597 f38db490-d61c-443f-a65b-d21fe96a405b --- contrib/scripts/get_ilbc_source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/scripts/get_ilbc_source.sh b/contrib/scripts/get_ilbc_source.sh index 21333f14c..fd7bac12e 100755 --- a/contrib/scripts/get_ilbc_source.sh +++ b/contrib/scripts/get_ilbc_source.sh @@ -22,7 +22,7 @@ read tmp wget -P codecs/ilbc http://www.ietf.org/rfc/rfc3951.txt -wget -P codecs/ilbc http://www.ilbcfreeware.org/documentation/extract-cfile.awk +wget -q -O - http://www.ilbcfreeware.org/documentation/extract-cfile.awk | sed -e 's/\r//g' > codecs/ilbc/extract-cfile.awk (cd codecs/ilbc && awk -f extract-cfile.awk rfc3951.txt) -- cgit v1.2.3