PERF: performance improvement

This commit is contained in:
Ken Martin 2006-05-15 13:47:13 -04:00
parent fd8e45d4a1
commit c0e27431e7
1 changed files with 4 additions and 10 deletions

View File

@ -871,17 +871,11 @@ cmGlobalUnixMakefileGenerator3
// search each local generator until a match is found
if (!result)
{
unsigned int i;
for (i = 0; i < this->LocalGenerators.size(); ++i)
result = this->FindTarget(0,name);
if (result)
{
// search all targets
result = this->LocalGenerators[i]->GetMakefile()->FindTarget(name);
if (result)
{
lg3 = static_cast<cmLocalUnixMakefileGenerator3 *>
(this->LocalGenerators[i]);
break;
}
lg3 = static_cast<cmLocalUnixMakefileGenerator3 *>
(result->GetMakefile()->GetLocalGenerator());
}
}