summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cpack.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-07-31 14:28:30 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-07-31 14:28:30 (GMT)
commitb24533f27cfc6ced9cc8c80a75453f155646186b (patch)
tree9cf3b5b202d7e88797345c8882de0d50118a1953 /Source/CPack/cpack.cxx
parent8142636742370ef4b412faef6224ecb4ee471c40 (diff)
downloadCMake-b24533f27cfc6ced9cc8c80a75453f155646186b.zip
CMake-b24533f27cfc6ced9cc8c80a75453f155646186b.tar.gz
CMake-b24533f27cfc6ced9cc8c80a75453f155646186b.tar.bz2
ENH: fix line lengths
Diffstat (limited to 'Source/CPack/cpack.cxx')
-rw-r--r--Source/CPack/cpack.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx
index c2a26ad..7c22d70 100644
--- a/Source/CPack/cpack.cxx
+++ b/Source/CPack/cpack.cxx
@@ -385,7 +385,8 @@ int main (int argc, char *argv[])
cmCPack_Log(&log, cmCPackLog::LOG_VERBOSE, "For project: "
<< projName << std::endl);
- const char* projVersion = mf->GetDefinition("CPACK_PACKAGE_VERSION");
+ const char* projVersion =
+ mf->GetDefinition("CPACK_PACKAGE_VERSION");
if ( !projVersion )
{
const char* projVersionMajor
@@ -397,7 +398,8 @@ int main (int argc, char *argv[])
cmOStringStream ostr;
ostr << projVersionMajor << "." << projVersionMinor << "."
<< projVersionPatch;
- mf->AddDefinition("CPACK_PACKAGE_VERSION", ostr.str().c_str());
+ mf->AddDefinition("CPACK_PACKAGE_VERSION",
+ ostr.str().c_str());
}
int res = cpackGenerator->ProcessGenerator();