summaryrefslogtreecommitdiff
path: root/contrib/scripts
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2008-06-10 18:35:37 +0000
committerSean Bright <sean@malleable.com>2008-06-10 18:35:37 +0000
commit14b35dfb38fb1cc4578637b06dfc0068d9915ede (patch)
tree28398f8a8cb5fc8f755e4e463fb0ca1b6599d44a /contrib/scripts
parente9d72e0cb22838d180a31d98deb40d4d951df0c7 (diff)
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: https://origsvn.digium.com/svn/asterisk/trunk@121597 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'contrib/scripts')
-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)