diff options
-rw-r--r-- | Source/cmFileCommand.cxx | 3 | ||||
-rw-r--r-- | Source/cmFileCommand.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 58b06f4..d9a2032 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1251,7 +1251,7 @@ bool cmFileCommand::HandleInstallCommand(std::vector<std::string> const& args) optional); if (result == true) { - result = this->DoInstall(installer, properties, + result = this->DoInstall(installer, itype, rename, destination, files, optional); } return result; @@ -1572,7 +1572,6 @@ bool cmFileCommand::ParseInstallArgs(std::vector<std::string> const& args, //---------------------------------------------------------------------------- bool cmFileCommand::DoInstall( cmFileInstaller& installer, - std::map<cmStdString, const char*>& properties, const int itype, const std::string& rename, const std::string& destination, diff --git a/Source/cmFileCommand.h b/Source/cmFileCommand.h index 501a8c3..c779cf3 100644 --- a/Source/cmFileCommand.h +++ b/Source/cmFileCommand.h @@ -172,7 +172,6 @@ protected: bool& optional ); bool DoInstall(cmFileInstaller& installer, - std::map<cmStdString, const char*>& properties, const int itype, const std::string& rename, const std::string& destination, |