Genex: Use case-sensitive comparison in PLATFORM_ID.
This commit is contained in:
parent
9436353f94
commit
2eda924389
|
@ -512,7 +512,7 @@ struct PlatformIdNode : public cmGeneratorExpressionNode
|
||||||
return parameters.front().empty() ? "1" : "0";
|
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";
|
return "1";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue