summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2010-01-20 20:01:07 +0000
committerDavid Vossel <dvossel@digium.com>2010-01-20 20:01:07 +0000
commit1da8e44be87a93b184af64c3a295573476f67a20 (patch)
tree927c2d44bcfc34d57d7d628846e860f9bb5d7794 /Makefile
parent3a24f8ad06d3c3d67879ec2d176dcca5d8f9cc8c (diff)
Merged revisions 241626 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r241626 | dvossel | 2010-01-20 14:00:04 -0600 (Wed, 20 Jan 2010) | 6 lines fixes parsing error in Makefile. Some echo lines were missing "; . Thanks to jparker for pointing out the problem. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@241627 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 469fe64ae..a198d7a96 100644
--- a/Makefile
+++ b/Makefile
@@ -732,11 +732,11 @@ samples: adsi
echo ";minmemfree = 1 ; in MBs, Asterisk stops accepting new calls if the amount of free memory falls below this watermark" ; \
echo ";cache_record_files = yes ; Cache recorded sound files to another directory during recording" ; \
echo ";record_cache_dir = /tmp ; Specify cache directory (used in conjunction with cache_record_files)" ; \
- echo ";transmit_silence = yes ; Transmit silence while a channel is in a waiting state, a recording only state, or when DTMF is \
- echo " ; being generated. Note that the silence internally is generated in raw signed linear format. \
- echo " ; This means that it must be transcoded into the native format of the channel before it can be sent \
- echo " ; to the device. It is for this reason that this is optional, as it may result in requiring a \
- echo " ; temporary codec translation path for a channel that may not otherwise require one. \
+ echo ";transmit_silence = yes ; Transmit silence while a channel is in a waiting state, a recording only state, or when DTMF is" ; \
+ echo " ; being generated. Note that the silence internally is generated in raw signed linear format." ; \
+ echo " ; This means that it must be transcoded into the native format of the channel before it can be sent" ; \
+ echo " ; to the device. It is for this reason that this is optional, as it may result in requiring a" ; \
+ echo " ; temporary codec translation path for a channel that may not otherwise require one." ; \
echo ";transcode_via_sln = yes ; Build transcode paths via SLINEAR, instead of directly" ; \
echo ";runuser = asterisk ; The user to run as" ; \
echo ";rungroup = asterisk ; The group to run as" ; \