Genex: Use case-sensitive comparison in PLATFORM_ID.

This commit is contained in:
Stephen Kelly 2013-12-18 18:48:07 +01:00
parent 9436353f94
commit 2eda924389
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ struct PlatformIdNode : public cmGeneratorExpressionNode
return parameters.front().empty() ? "1" : "0";
}
if (cmsysString_strcasecmp(parameters.begin()->c_str(), platformId) == 0)
if (strcmp(parameters.begin()->c_str(), platformId) == 0)
{
return "1";
}