aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-09 21:38:24 +0000
committerpabelanger <pabelanger@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-09 21:38:24 +0000
commitce672dec0365c99323d7feabed4546d75030e2db (patch)
tree3a64020601ee401f755f434c7daec795c3db83f0 /autoconf
parent35ee988030b37f20586eff8fd9bff6c90314393e (diff)
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.6.2@301220 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/ast_ext_lib.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/ast_ext_lib.m4 b/autoconf/ast_ext_lib.m4
index df65a1352..f0b8909b1 100644
--- a/autoconf/ast_ext_lib.m4
+++ b/autoconf/ast_ext_lib.m4
@@ -54,7 +54,7 @@ AC_ARG_WITH([$1], AC_HELP_STRING([--with-$1=PATH], [use $3 in PATH]),
;;
esac
],
- [m4_ifval($4, [$2="$4"])])
+ [m4_ifval($4, [$2="$4"], [:])])
AC_SUBST($2)
])