Lowercase has a bad signiture, so I have to live with it

This commit is contained in:
Ken Martin 2003-02-14 11:13:07 -05:00
parent 3453d10412
commit 04d604ec89

View File

@ -172,8 +172,7 @@ int do_cmaketest (int argc, char **argv)
std::cerr << "Error: cmaketest does not have a valid MAKEPROGRAM\n";
}
makeCommand = cmSystemTools::ConvertToOutputPath(makeCommand.c_str());
std::string lowerCaseCommand = makeCommand;
cmSystemTools::LowerCase(lowerCaseCommand);
std::string lowerCaseCommand = cmSystemTools::LowerCase(makeCommand);
// if msdev is the make program then do the following
// MSDEV 6.0
if(lowerCaseCommand.find("msdev") != std::string::npos)