summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-25 06:21:22 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-29 07:15:37 (GMT)
commit1e5349a5a0162cf5f75639717d374e73358df7b2 (patch)
treead43dff569d3d6a7236327080c96c93865a9698d /Source/cmGlobalGenerator.cxx
parent11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff)
downloadCMake-1e5349a5a0162cf5f75639717d374e73358df7b2.zip
CMake-1e5349a5a0162cf5f75639717d374e73358df7b2.tar.gz
CMake-1e5349a5a0162cf5f75639717d374e73358df7b2.tar.bz2
cmGlobalGenerator: Access makefile from makefiles container.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 46c1ccc..97fa823 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1669,8 +1669,7 @@ void cmGlobalGenerator::CheckLocalGenerators()
text += "\n linked by target \"";
text += l->second.GetName();
text += "\" in directory ";
- text+=this->LocalGenerators[i]->GetMakefile()
- ->GetCurrentSourceDirectory();
+ text+=this->Makefiles[i]->GetCurrentSourceDirectory();
notFoundMap[varName] = text;
}
}