summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallFilesCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-01 07:01:03 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-23 15:21:27 (GMT)
commit75e511eeaf77848ffef00d570cb10243764f51d2 (patch)
treec212bd42181b246123e8ffd7ef57eccf77ef00ed /Source/cmInstallFilesCommand.cxx
parent29c1385675df37146465e820d303de3cdd703e8c (diff)
downloadCMake-75e511eeaf77848ffef00d570cb10243764f51d2.zip
CMake-75e511eeaf77848ffef00d570cb10243764f51d2.tar.gz
CMake-75e511eeaf77848ffef00d570cb10243764f51d2.tar.bz2
cmInstallFilesGenerator: Require cmLocalGenerator, not cmMakefile.
Diffstat (limited to 'Source/cmInstallFilesCommand.cxx')
-rw-r--r--Source/cmInstallFilesCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx
index 508c373..68557bd 100644
--- a/Source/cmInstallFilesCommand.cxx
+++ b/Source/cmInstallFilesCommand.cxx
@@ -128,7 +128,7 @@ void cmInstallFilesCommand::CreateInstallGenerator() const
cmInstallGenerator::MessageLevel message =
cmInstallGenerator::SelectMessageLevel(this->Makefile);
this->Makefile->AddInstallGenerator(
- new cmInstallFilesGenerator(this->Makefile, this->Files,
+ new cmInstallFilesGenerator(this->Files,
destination.c_str(), false,
no_permissions, no_configurations,
no_component.c_str(), message, no_rename));