summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackGenericGenerator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-09 13:32:08 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-09 13:32:08 (GMT)
commit95ea0272deccb95ca7d7f5a9ae62d5200482dd48 (patch)
treef50482d3bff07102159112430324ecb1642a6d29 /Source/CPack/cmCPackGenericGenerator.cxx
parent8c11d31cc35acd8b92cb757db5af02b3acefc798 (diff)
downloadCMake-95ea0272deccb95ca7d7f5a9ae62d5200482dd48.zip
CMake-95ea0272deccb95ca7d7f5a9ae62d5200482dd48.tar.gz
CMake-95ea0272deccb95ca7d7f5a9ae62d5200482dd48.tar.bz2
STYLE: Fix style problems
Diffstat (limited to 'Source/CPack/cmCPackGenericGenerator.cxx')
-rw-r--r--Source/CPack/cmCPackGenericGenerator.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/CPack/cmCPackGenericGenerator.cxx b/Source/CPack/cmCPackGenericGenerator.cxx
index 0b4e163..209c597 100644
--- a/Source/CPack/cmCPackGenericGenerator.cxx
+++ b/Source/CPack/cmCPackGenericGenerator.cxx
@@ -148,7 +148,8 @@ int cmCPackGenericGenerator::InstallProject()
std::vector<std::string> installCommandsVector;
cmSystemTools::ExpandListArgument(installCommands,installCommandsVector);
std::vector<std::string>::iterator it;
- for ( it = installCommandsVector.begin(); it != installCommandsVector.end();
+ for ( it = installCommandsVector.begin();
+ it != installCommandsVector.end();
++it )
{
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Execute: " << it->c_str()
@@ -167,7 +168,8 @@ int cmCPackGenericGenerator::InstallProject()
<< output.c_str() << std::endl;
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem running install command: " << it->c_str() << std::endl
- << "Please check " << tmpFile.c_str() << " for errors" << std::endl);
+ << "Please check " << tmpFile.c_str() << " for errors"
+ << std::endl);
res = 0;
break;
}
@@ -184,8 +186,8 @@ int cmCPackGenericGenerator::InstallProject()
{
cmCPackLogger(cmCPackLog::LOG_ERROR,
"CPACK_INSTALLED_DIRECTORIES should contain pairs of <directory> and "
- "<subdirectory>. The <subdirectory> can be '.' to be installed in the "
- "toplevel directory of installation." << std::endl);
+ "<subdirectory>. The <subdirectory> can be '.' to be installed in "
+ "the toplevel directory of installation." << std::endl);
return 0;
}
std::vector<std::string>::iterator it;