diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-30 17:50:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-04 13:06:41 (GMT) |
commit | f059ed165bafff94f9bcd3823e12a8ce1f5ec647 (patch) | |
tree | edd12618c7b9e6f6b94a2d9b7882fbb5e9077768 /Source/cmGlobalGenerator.cxx | |
parent | a653611db0d6e23456c5ef90f95e19ea5d70a428 (diff) | |
download | CMake-f059ed165bafff94f9bcd3823e12a8ce1f5ec647.zip CMake-f059ed165bafff94f9bcd3823e12a8ce1f5ec647.tar.gz CMake-f059ed165bafff94f9bcd3823e12a8ce1f5ec647.tar.bz2 |
cmMakefile: Move Configure responsibility from cmLocalGenerator.
The generator should only have a function at generate time.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 1ee5500..1d11475 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1106,7 +1106,7 @@ void cmGlobalGenerator::Configure() this->CMakeInstance->GetHomeOutputDirectory()); // now do it - lg->Configure(); + lg->GetMakefile()->Configure(); // update the cache entry for the number of local generators, this is used // for progress |