Allow YASM to be used instead of NASM.
Modified: trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp
--- trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp 2005-06-29 20:13:51 UTC (rev 16333) +++ trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp 2005-06-29 22:19:47 UTC (rev 16334) @@ -799,6 +799,11 @@
detectedNasm = TryToDetectThisNetwideAssembler ( nasmCommand ); } #endif
+ if ( !detectedNasm )
+ {
+ nasmCommand = "yasm";
+ detectedNasm = TryToDetectThisNetwideAssembler ( nasmCommand );
+ }
if ( detectedNasm ) printf ( "detected (%s)\n", nasmCommand.c_str () ); else