aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-10 18:34:45 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-06-10 18:34:45 +0000
commit7bf879902d1ac8c7cda875492c8deac8a8f04fc0 (patch)
treed724e095a587a4af11ac9a18b101e80a7d1c9400 /contrib
parent58b523772a26867af3756c0f9b98bc612cce5c62 (diff)
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.4@121596 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)