summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index 4b22f07..ae9df5e 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -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());
}
}