aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-09 21:40:34 +0000
committerpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-09 21:40:34 +0000
commit6d1c333e2700dde40b0cc893b6e2c05eee7af3f3 (patch)
tree35196c58fd20b1986969febb1e9ef7b95b916986 /configure
parent9f022f96cb90436c502ee153bc0ebbb3becb2d92 (diff)
Merged revisions 301220 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ........ r301220 | pabelanger | 2011-01-09 16:38:24 -0500 (Sun, 09 Jan 2011) | 14 lines SOUND_CACHE_DIR now defaults to empty Sounds files included in the Asterisk tarball were being ignored and re-downloaded. Users wanting to cache the files can still override the setting using the --with-sounds-cache option. (closes issue #18589) Reported by: pabelanger Patches: issue18589.patch uploaded by pabelanger (license 224) Tested by: pabelanger Review: https://reviewboard.asterisk.org/r/1074/ ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@301221 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 99fd5fc4c..a8173eba6 100755
--- a/configure
+++ b/configure
@@ -10925,7 +10925,7 @@ if test "${with_sounds_cache+set}" = set; then :
;;
*)
if test "x${withval}" = "x"; then
- SOUNDS_CACHE_DIR="${HOME}/.asterisk_sounds_cache"
+ :
else
SOUNDS_CACHE_DIR="${withval}"
fi
@@ -10933,7 +10933,7 @@ if test "${with_sounds_cache+set}" = set; then :
esac
else
- SOUNDS_CACHE_DIR="${HOME}/.asterisk_sounds_cache"
+ :
fi