ENH: drop the case of the site name. This makes it consistent with Dart's usage.
This commit is contained in:
parent
1e9fbdc38c
commit
275b334f8b
|
@ -96,10 +96,10 @@ bool cmSiteNameCommand::InitialPass(std::vector<std::string>& args)
|
|||
cmRegularExpression reg( RegExp.c_str() );
|
||||
if(reg.find(nsOutput.c_str()))
|
||||
{
|
||||
siteName = reg.match(1);
|
||||
siteName = cmSystemTools::LowerCase(reg.match(1));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
m_Makefile->
|
||||
AddCacheDefinition("SITE",
|
||||
siteName.c_str(),
|
||||
|
|
Loading…
Reference in New Issue