Accidently commited a hack together with r37190. This will be reverted.

svn path=/trunk/; revision=37208
This commit is contained in:
Daniel Reimer 2008-11-05 15:32:27 +00:00
parent 8a89143b07
commit 559030c1fd

View file

@ -885,6 +885,9 @@ MingwBackend::GetBinutilsVersion ( const string& binutilsCommand )
bool
MingwBackend::IsSupportedCompilerVersion ( const string& compilerVersion )
{
if ( strcmp ( compilerVersion.c_str (), "3.4.2") < 0 )
return false;
else
return true;
}