summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-03-12 14:39:23 (GMT)
committerBrad King <brad.king@kitware.com>2014-03-12 14:40:45 (GMT)
commit3be265b304da0879c79e2fcdfff6f25b1a4e87c1 (patch)
tree56dbb0b15877b933fc489d9b22e04af83f1d57aa /Source
parentaf8a1643c1a42aa3b276a50bca10a4faab176764 (diff)
downloadCMake-3be265b304da0879c79e2fcdfff6f25b1a4e87c1.zip
CMake-3be265b304da0879c79e2fcdfff6f25b1a4e87c1.tar.gz
CMake-3be265b304da0879c79e2fcdfff6f25b1a4e87c1.tar.bz2
Workaround Sun C++ 5.9 compiler crash
Adjust whitespace in Source/CPack/cpack.cxx to avoid a strange internal compiler crash.
Diffstat (limited to 'Source')
-rw-r--r--Source/CPack/cpack.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx
index 7ebfeda..9eabdca 100644
--- a/Source/CPack/cpack.cxx
+++ b/Source/CPack/cpack.cxx
@@ -275,8 +275,8 @@ int main (int argc, char const* const* argv)
else if ( cpackConfigFileSpecified )
{
cmCPack_Log(&log, cmCPackLog::LOG_ERROR,
- "Cannot find CPack config file: \"" << cpackConfigFile
- << "\"" << std::endl);
+ "Cannot find CPack config file: \"" <<
+ cpackConfigFile << "\"" << std::endl);
return 1;
}