diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-05-18 12:49:06 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-05-18 12:49:06 (GMT) |
commit | aee311a89dd409329375fddd357191817277df7f (patch) | |
tree | e859cb7be4f0fd1dd91f1361bf0d9d494028cf98 /Source/cmInstallTargetGenerator.cxx | |
parent | 42a272428b3f805427743c58dcb3457982979797 (diff) | |
download | CMake-aee311a89dd409329375fddd357191817277df7f.zip CMake-aee311a89dd409329375fddd357191817277df7f.tar.gz CMake-aee311a89dd409329375fddd357191817277df7f.tar.bz2 |
STYLE: fix line lengths
Alex
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r-- | Source/cmInstallTargetGenerator.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx index 1572e9a..3487c26 100644 --- a/Source/cmInstallTargetGenerator.cxx +++ b/Source/cmInstallTargetGenerator.cxx @@ -459,7 +459,7 @@ void cmInstallTargetGenerator } void cmInstallTargetGenerator::AddStripRule(std::ostream& os, - const std::string& destinationFilename) + const std::string& destinationFilename) { // Don't handle OSX Bundles. @@ -482,8 +482,8 @@ void cmInstallTargetGenerator::AddStripRule(std::ostream& os, } void cmInstallTargetGenerator::AddRanlibRule(std::ostream& os, - cmTarget::TargetType type, - const std::string& destinationFilename) + cmTarget::TargetType type, + const std::string& destinationFilename) { // Static libraries need ranlib on this platform. if(type != cmTarget::STATIC_LIBRARY) @@ -498,7 +498,8 @@ void cmInstallTargetGenerator::AddRanlibRule(std::ostream& os, return; } - std::string ranlib = this->Target->GetMakefile()->GetRequiredDefinition("CMAKE_RANLIB"); + std::string ranlib = this->Target->GetMakefile()->GetRequiredDefinition( + "CMAKE_RANLIB"); if (!ranlib.size()) { return; |