Author: sserapion
Date: Wed Jul 8 21:28:52 2009
New Revision: 41809
URL:
http://svn.reactos.org/svn/reactos?rev=41809&view=rev
Log:
Remove unneeded character in ROS_PREFIX case of invocation so that
TryToDetectThisCompiler() doesn't fail
Modified:
branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/mingw.cpp
Modified: branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/mingw.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/tools…
==============================================================================
--- branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/mingw.cpp [iso-8859-1]
(original)
+++ branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/mingw.cpp [iso-8859-1]
Wed Jul 8 21:28:52 2009
@@ -749,7 +749,7 @@
if ( ROS_PREFIXValue.length () > 0 )
{
compilerPrefix = ROS_PREFIXValue;
- compilerCommand = compilerPrefix + "-gcc";
+ compilerCommand = compilerPrefix + "gcc";
detectedCompiler = TryToDetectThisCompiler ( compilerCommand );
}
#if defined(WIN32)