diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 21:05:22 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-23 15:46:23 (GMT) |
commit | 1f39ee5bebf66aac33e7e1fa1172c048c13dfd2d (patch) | |
tree | 4054230624728ba75b0e1f646c1fe52fa1cf818e /Source/cmInstallCommand.cxx | |
parent | c259b8302648de1387e21e9ea907cd1a2cb49933 (diff) | |
download | CMake-1f39ee5bebf66aac33e7e1fa1172c048c13dfd2d.zip CMake-1f39ee5bebf66aac33e7e1fa1172c048c13dfd2d.tar.gz CMake-1f39ee5bebf66aac33e7e1fa1172c048c13dfd2d.tar.bz2 |
cmInstallExportGenerator: Require cmLocalGenerator, not cmMakefile.
Diffstat (limited to 'Source/cmInstallCommand.cxx')
-rw-r--r-- | Source/cmInstallCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallCommand.cxx b/Source/cmInstallCommand.cxx index e22dc42..333c2ff 100644 --- a/Source/cmInstallCommand.cxx +++ b/Source/cmInstallCommand.cxx @@ -1406,7 +1406,7 @@ bool cmInstallCommand::HandleExportMode(std::vector<std::string> const& args) ica.GetDestination().c_str(), ica.GetPermissions().c_str(), ica.GetConfigurations(), ica.GetComponent().c_str(), message, fname.c_str(), - name_space.GetCString(), exportOld.IsEnabled(), this->Makefile); + name_space.GetCString(), exportOld.IsEnabled()); this->Makefile->AddInstallGenerator(exportGenerator); return true; |