diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-25 06:21:22 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-29 07:15:37 (GMT) |
commit | 1e5349a5a0162cf5f75639717d374e73358df7b2 (patch) | |
tree | ad43dff569d3d6a7236327080c96c93865a9698d /Source | |
parent | 11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff) | |
download | CMake-1e5349a5a0162cf5f75639717d374e73358df7b2.zip CMake-1e5349a5a0162cf5f75639717d374e73358df7b2.tar.gz CMake-1e5349a5a0162cf5f75639717d374e73358df7b2.tar.bz2 |
cmGlobalGenerator: Access makefile from makefiles container.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 3 |
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; } } |