Merge topic 'cpack-fix-preinstall-tool'

93a3ec8b CPack: Fix make tool selection during preinstall (#15483)
This commit is contained in:
Brad King 2015-04-01 13:19:37 -04:00 committed by CMake Topic Stage
commit 4a821a47f7
1 changed files with 8 additions and 15 deletions

View File

@ -655,26 +655,19 @@ int cmCPackGenerator::InstallProjectViaInstallCMakeProjects(
cmSystemTools::SetForceUnixPaths(globalGenerator->GetForceUnixPaths()); cmSystemTools::SetForceUnixPaths(globalGenerator->GetForceUnixPaths());
// Does this generator require pre-install? // Does this generator require pre-install?
if ( globalGenerator->GetPreinstallTargetName() ) if (const char* preinstall = globalGenerator->GetPreinstallTargetName())
{ {
globalGenerator->FindMakeProgram(this->MakefileMap); std::string buildCommand =
std::string cmakeMakeProgram globalGenerator->GenerateCMakeBuildCommand(
= this->MakefileMap->GetSafeDefinition("CMAKE_MAKE_PROGRAM"); preinstall, buildConfig, "", false);
std::vector<std::string> buildCommand;
globalGenerator->GenerateBuildCommand(buildCommand, cmakeMakeProgram,
installProjectName, installDirectory,
globalGenerator->GetPreinstallTargetName(),
buildConfig, false, false);
std::string buildCommandStr =
cmSystemTools::PrintSingleCommand(buildCommand);
cmCPackLogger(cmCPackLog::LOG_DEBUG, cmCPackLogger(cmCPackLog::LOG_DEBUG,
"- Install command: " << buildCommandStr << std::endl); "- Install command: " << buildCommand << std::endl);
cmCPackLogger(cmCPackLog::LOG_OUTPUT, cmCPackLogger(cmCPackLog::LOG_OUTPUT,
"- Run preinstall target for: " << installProjectName << std::endl); "- Run preinstall target for: " << installProjectName << std::endl);
std::string output; std::string output;
int retVal = 1; int retVal = 1;
bool resB = bool resB =
cmSystemTools::RunSingleCommand(buildCommand, cmSystemTools::RunSingleCommand(buildCommand.c_str(),
&output, &output,
&retVal, &retVal,
installDirectory.c_str(), installDirectory.c_str(),
@ -684,12 +677,12 @@ int cmCPackGenerator::InstallProjectViaInstallCMakeProjects(
std::string tmpFile = this->GetOption("CPACK_TOPLEVEL_DIRECTORY"); std::string tmpFile = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
tmpFile += "/PreinstallOutput.log"; tmpFile += "/PreinstallOutput.log";
cmGeneratedFileStream ofs(tmpFile.c_str()); cmGeneratedFileStream ofs(tmpFile.c_str());
ofs << "# Run command: " << buildCommandStr << std::endl ofs << "# Run command: " << buildCommand << std::endl
<< "# Directory: " << installDirectory << std::endl << "# Directory: " << installDirectory << std::endl
<< "# Output:" << std::endl << "# Output:" << std::endl
<< output << std::endl; << output << std::endl;
cmCPackLogger(cmCPackLog::LOG_ERROR, cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem running install command: " << buildCommandStr "Problem running install command: " << buildCommand
<< std::endl << std::endl
<< "Please check " << tmpFile << " for errors" << "Please check " << tmpFile << " for errors"
<< std::endl); << std::endl);