ENH: remove cerr output
This commit is contained in:
parent
e026f620f8
commit
4bdc78339b
@ -190,7 +190,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
destDir += tempInstallDirectory;
|
destDir += tempInstallDirectory;
|
||||||
cmSystemTools::PutEnv(destDir.c_str());
|
cmSystemTools::PutEnv(destDir.c_str());
|
||||||
}
|
}
|
||||||
#undef cerr
|
|
||||||
|
|
||||||
// If the CPackConfig file sets CPACK_INSTALL_COMMANDS then run them
|
// If the CPackConfig file sets CPACK_INSTALL_COMMANDS then run them
|
||||||
// as listed
|
// as listed
|
||||||
@ -204,7 +203,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
it != installCommandsVector.end();
|
it != installCommandsVector.end();
|
||||||
++it )
|
++it )
|
||||||
{
|
{
|
||||||
std::cerr << *it << "\n";
|
|
||||||
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Execute: " << it->c_str()
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Execute: " << it->c_str()
|
||||||
<< std::endl);
|
<< std::endl);
|
||||||
std::string output;
|
std::string output;
|
||||||
@ -253,7 +251,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
it != installDirectoriesVector.end();
|
it != installDirectoriesVector.end();
|
||||||
++it )
|
++it )
|
||||||
{
|
{
|
||||||
std::cerr << *it << "\n";
|
|
||||||
cmCPackLogger(cmCPackLog::LOG_DEBUG, "Find files" << std::endl);
|
cmCPackLogger(cmCPackLog::LOG_DEBUG, "Find files" << std::endl);
|
||||||
cmsys::Glob gl;
|
cmsys::Glob gl;
|
||||||
std::string toplevel = it->c_str();
|
std::string toplevel = it->c_str();
|
||||||
@ -335,7 +332,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
it != cmakeProjectsVector.end();
|
it != cmakeProjectsVector.end();
|
||||||
++it )
|
++it )
|
||||||
{
|
{
|
||||||
std::cerr << *it << "\n";
|
|
||||||
if ( it+1 == cmakeProjectsVector.end() ||
|
if ( it+1 == cmakeProjectsVector.end() ||
|
||||||
it+2 == cmakeProjectsVector.end() ||
|
it+2 == cmakeProjectsVector.end() ||
|
||||||
it+3 == cmakeProjectsVector.end() )
|
it+3 == cmakeProjectsVector.end() )
|
||||||
@ -458,7 +454,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
it != binaryDirectoriesVector.end();
|
it != binaryDirectoriesVector.end();
|
||||||
++it )
|
++it )
|
||||||
{
|
{
|
||||||
std::cerr << *it << "\n";
|
|
||||||
std::string installFile = it->c_str();
|
std::string installFile = it->c_str();
|
||||||
installFile += "/cmake_install.cmake";
|
installFile += "/cmake_install.cmake";
|
||||||
cmake cm;
|
cmake cm;
|
||||||
@ -489,7 +484,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
cmSystemTools::PutEnv("DESTDIR=");
|
cmSystemTools::PutEnv("DESTDIR=");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cerr << "strip loop \n";
|
|
||||||
const char* stripExecutable = this->GetOption("CPACK_STRIP_COMMAND");
|
const char* stripExecutable = this->GetOption("CPACK_STRIP_COMMAND");
|
||||||
const char* stripFiles
|
const char* stripFiles
|
||||||
= this->GetOption("CPACK_STRIP_FILES");
|
= this->GetOption("CPACK_STRIP_FILES");
|
||||||
@ -504,7 +498,6 @@ int cmCPackGenericGenerator::InstallProject()
|
|||||||
it != stripFilesVector.end();
|
it != stripFilesVector.end();
|
||||||
++it )
|
++it )
|
||||||
{
|
{
|
||||||
std::cerr << *it << "\n";
|
|
||||||
std::string fileName = tempInstallDirectory;
|
std::string fileName = tempInstallDirectory;
|
||||||
fileName += "/" + *it;
|
fileName += "/" + *it;
|
||||||
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user