[svn] r7057: nemerle/trunk/configure

malekith svnadmin at nemerle.org
Wed Dec 6 12:45:22 CET 2006


Log:
Fix check for mono version.

Author: malekith
Date: Wed Dec  6 12:45:21 2006
New Revision: 7057

Modified:
   nemerle/trunk/configure

Modified: nemerle/trunk/configure
==============================================================================
--- nemerle/trunk/configure	(original)
+++ nemerle/trunk/configure	Wed Dec  6 12:45:21 2006
@@ -781,7 +781,7 @@
   try_execute "${monopath}xbuild"
   res=$?
   if ((res < 126 && res != 2)); then
-    if ((m_major > 1 || m_major == 1 && m_minor > 2 || m_major == 1 && m_minor == 1 && m_revision > 14)); then
+    if ((m_major > 1 || m_major == 1 && m_minor >= 2 || m_major == 1 && m_minor == 1 && m_revision > 14)); then
       echo_result found
       msbuild="${monopath}xbuild"
     else



More information about the svn mailing list