Author: rjung
Date: Tue Jan  5 09:53:36 2010
New Revision: 895968

URL: http://svn.apache.org/viewvc?rev=895968&view=rev
Log:
Fix wrong index in APR version number check.

Modified:
    tomcat/native/trunk/native/build/tcnative.m4

Modified: tomcat/native/trunk/native/build/tcnative.m4
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/native/build/tcnative.m4?rev=895968&r1=895967&r2=895968&view=diff
==============================================================================
--- tomcat/native/trunk/native/build/tcnative.m4 (original)
+++ tomcat/native/trunk/native/build/tcnative.m4 Tue Jan  5 09:53:36 2010
@@ -38,7 +38,7 @@
     if test "${2}" -lt "3"; then
       AC_MSG_ERROR(You need APR version 1.3.3 or newer installed.)
     else
-      if test "${2}" -lt "3"; then
+      if test "${3}" -lt "3"; then
         AC_MSG_ERROR(You need APR version 1.3.3 or newer installed.)
       fi
     fi



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to