[asterisk-commits] tzafrir: trunk r316520 - in /trunk: ./ autoconf/ast_check_pwlib.m4 configure
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 4 02:13:23 CDT 2011
Author: tzafrir
Date: Wed May 4 02:13:18 2011
New Revision: 316520
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=316520
Log:
Merged revisions 316193 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r316193 | tzafrir | 2011-05-03 13:57:16 +0300 (ג', 03 מאי 2011) | 8 lines
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)
........
Modified:
trunk/ (props changed)
trunk/autoconf/ast_check_pwlib.m4
trunk/configure
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/autoconf/ast_check_pwlib.m4
URL: http://svnview.digium.com/svn/asterisk/trunk/autoconf/ast_check_pwlib.m4?view=diff&rev=316520&r1=316519&r2=316520
==============================================================================
--- trunk/autoconf/ast_check_pwlib.m4 (original)
+++ trunk/autoconf/ast_check_pwlib.m4 Wed May 4 02:13:18 2011
@@ -205,9 +205,9 @@
$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)
More information about the asterisk-commits
mailing list