From: Terry Wilson Date: Tue, 26 Aug 2008 15:22:58 +0000 (+0000) Subject: sounds/Makefile installs sounds using the "new" language directory structure, but... X-Git-Tag: 1.4.22-rc3~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a418df6432347c521f5d32f08bced44f90908cda;p=thirdparty%2Fasterisk.git sounds/Makefile installs sounds using the "new" language directory structure, but languageprefix needs to be set = yes for sounds in subdirectories (digits/1, etc.) to play as the correct language. Fix the generation of asterisk.conf to include languageprefix=yes git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@140050 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index 32b5eed6c1..c318d3e4f0 100644 --- a/Makefile +++ b/Makefile @@ -583,7 +583,8 @@ samples: adsi echo "astrundir => $(ASTVARRUNDIR)" ; \ echo "astlogdir => $(ASTLOGDIR)" ; \ echo "" ; \ - echo ";[options]" ; \ + echo "[options]" ; \ + echo "languageprefix = yes ; Use the new sound prefix path syntax" ; \ echo ";verbose = 3" ; \ echo ";debug = 3" ; \ echo ";alwaysfork = yes ; same as -F at startup" ; \ @@ -597,7 +598,6 @@ samples: adsi echo ";nocolor = yes ; Disable console colors" ; \ echo ";dontwarn = yes ; Disable some warnings" ; \ echo ";dumpcore = yes ; Dump core on crash (same as -g at startup)" ; \ - echo ";languageprefix = yes ; Use the new sound prefix path syntax" ; \ echo ";internal_timing = yes" ; \ echo ";systemname = my_system_name ; prefix uniqueid with a system name for global uniqueness issues" ; \ echo ";maxcalls = 10 ; Maximum amount of calls allowed" ; \