From 1977bb8a554d6eea197ae8a49f0930e60c4eb1d5 Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Sun, 13 Sep 2009 21:26:46 +0000 Subject: [PATCH] Fix r43040 mistake. svn path=/trunk/; revision=43042 --- reactos/tools/rbuild/backend/mingw/mingw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/rbuild/backend/mingw/mingw.cpp b/reactos/tools/rbuild/backend/mingw/mingw.cpp index 4673d4dcadd..05163dbdeb9 100644 --- a/reactos/tools/rbuild/backend/mingw/mingw.cpp +++ b/reactos/tools/rbuild/backend/mingw/mingw.cpp @@ -743,7 +743,7 @@ MingwBackend::DetectCompiler () const string& TARGET_CCValue = Environment::GetVariable ( "TARGET_CC" ); const string& ROS_PREFIXValue = Environment::GetVariable ( "ROS_PREFIX" ); - if ( ROS_PREFIXValue.length () > 0 ) + if ( TARGET_CCValue.length () > 0 ) { compilerPrefix = ""; compilerCommand = TARGET_CCValue;