diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-01 07:01:03 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-23 15:21:27 (GMT) |
commit | 75e511eeaf77848ffef00d570cb10243764f51d2 (patch) | |
tree | c212bd42181b246123e8ffd7ef57eccf77ef00ed /Source/cmInstallProgramsCommand.cxx | |
parent | 29c1385675df37146465e820d303de3cdd703e8c (diff) | |
download | CMake-75e511eeaf77848ffef00d570cb10243764f51d2.zip CMake-75e511eeaf77848ffef00d570cb10243764f51d2.tar.gz CMake-75e511eeaf77848ffef00d570cb10243764f51d2.tar.bz2 |
cmInstallFilesGenerator: Require cmLocalGenerator, not cmMakefile.
Diffstat (limited to 'Source/cmInstallProgramsCommand.cxx')
-rw-r--r-- | Source/cmInstallProgramsCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallProgramsCommand.cxx b/Source/cmInstallProgramsCommand.cxx index be8096c..e6fbe88 100644 --- a/Source/cmInstallProgramsCommand.cxx +++ b/Source/cmInstallProgramsCommand.cxx @@ -91,7 +91,7 @@ void cmInstallProgramsCommand::FinalPass() cmInstallGenerator::MessageLevel message = cmInstallGenerator::SelectMessageLevel(this->Makefile); this->Makefile->AddInstallGenerator( - new cmInstallFilesGenerator(this->Makefile, this->Files, + new cmInstallFilesGenerator(this->Files, destination.c_str(), true, no_permissions, no_configurations, no_component.c_str(), message, no_rename)); |