[svn] r6064: nemerle/trunk/configure
malekith
svnadmin at nemerle.org
Fri Jan 20 19:58:42 CET 2006
Log:
Use ilasm2 if available.
Author: malekith
Date: Fri Jan 20 19:58:41 2006
New Revision: 6064
Modified:
nemerle/trunk/configure
Modified: nemerle/trunk/configure
==============================================================================
--- nemerle/trunk/configure (original)
+++ nemerle/trunk/configure Fri Jan 20 19:58:41 2006
@@ -608,16 +608,26 @@
# Step 9.
# Check if we have ilasm tool available
-echo_check_for "ilasm"
+echo_check_for "ilasm2"
-try_execute "${monopath}${netFRAMEWORK}ilasm"
+try_execute "${monopath}${netFRAMEWORK}ilasm2"
if test $? -lt 126; then
echo_result found
- asm="${monopath}${netFRAMEWORK}ilasm"
+ asm="${monopath}${netFRAMEWORK}ilasm2"
else
echo_result "not found"
+
+ echo_check_for "ilasm"
+ try_execute "${monopath}${netFRAMEWORK}ilasm"
+ if test $? -lt 126; then
+ echo_result found
+ asm="${monopath}${netFRAMEWORK}ilasm"
+ else
+ echo_result "not found"
+ fi
fi
+
# Step 10.
# Check if we have C# compiler available
echo_check_for "C# compiler"
More information about the svn
mailing list