aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-10 18:36:29 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-10 18:36:29 +0000
commitc823ea14e708e356b60c2a2f65a43ad880f97d77 (patch)
tree71ff03629e22a62ab39aeb483ab19f274d1ecad9 /contrib
parent9247bf60031a258e6d211271897bbdaaaf9c10cf (diff)
Merged revisions 121597 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r121597 | seanbright | 2008-06-10 14:35:37 -0400 (Tue, 10 Jun 2008) | 14 lines 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/branches/1.6.0@121598 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/scripts/get_ilbc_source.sh2
1 files changed, 1 insertions, 1 deletions
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)