cmLocalGenerator: Convert GetFeature recursion to loop.
This commit is contained in:
parent
ad0b0089ab
commit
7441fde34a
|
@ -2376,16 +2376,16 @@ const char* cmLocalGenerator::GetFeature(const std::string& feature,
|
|||
featureName += "_";
|
||||
featureName += cmSystemTools::UpperCase(config);
|
||||
}
|
||||
if(const char* value = this->Makefile->GetProperty(featureName))
|
||||
cmLocalGenerator* lg = this;
|
||||
while(lg)
|
||||
{
|
||||
if(const char* value = lg->GetMakefile()->GetProperty(featureName))
|
||||
{
|
||||
return value;
|
||||
}
|
||||
cmLocalGenerator* parent = this->GetParent();
|
||||
if(!parent)
|
||||
{
|
||||
return 0;
|
||||
lg = lg->GetParent();
|
||||
}
|
||||
return parent->GetFeature(feature, config);
|
||||
return 0;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue