diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 11:15:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-07 02:10:28 (GMT) |
commit | 3dd6f0a5bc0b6457c82df0b980a8f6ac87d1a6f9 (patch) | |
tree | a339f4e21ef6bd455c3cf287f5024c5868872119 /Source | |
parent | 73e4df99cb4d63f5ea8babb40656a74305d77e12 (diff) | |
download | CMake-3dd6f0a5bc0b6457c82df0b980a8f6ac87d1a6f9.zip CMake-3dd6f0a5bc0b6457c82df0b980a8f6ac87d1a6f9.tar.gz CMake-3dd6f0a5bc0b6457c82df0b980a8f6ac87d1a6f9.tar.bz2 |
cmake: Port configure-time code to cmMakefile.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 8c455b2..d1e6265 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1592,7 +1592,7 @@ int cmake::ActualConfigure() } } - cmMakefile* mf=this->GlobalGenerator->GetLocalGenerators()[0]->GetMakefile(); + cmMakefile* mf=this->GlobalGenerator->GetMakefiles()[0]; if (mf->IsOn("CTEST_USE_LAUNCHERS") && !this->State->GetGlobalProperty("RULE_LAUNCH_COMPILE")) { |