Re-fix bashism in ./configure: s/let/$(( ))/

A forward-port in r278985 accidentally re-introduced issue 17485. Fixing
it. Thanks to Jilles Tjoelker for the good report.

(closes issue #17485)



git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@316193 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tzafrir Cohen
2011-05-03 10:57:16 +00:00
parent 082850f4c9
commit cb039c14c7
2 changed files with 6 additions and 6 deletions

View File

@@ -205,9 +205,9 @@ AC_DEFUN([AST_CHECK_PWLIB_VERSION], [
$2_VER=$((${$2_MAJOR_VERSION}*10000+${$2_MINOR_VERSION}*100+${$2_BUILD_NUMBER}))
$2_REQ=$(($4*10000+$5*100+$6))
if test "x$10" = "x"; then
let $2_MAX=9999999
$2_MAX=9999999
else
let $2_MAX=$8*10000+$9*100+$10
$2_MAX=$(($8*10000+$9*100+$10))
fi
AC_MSG_CHECKING(if $1 version ${$2_VERSION} is compatible with chan_h323)