diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-06-12 19:44:10 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-06-12 19:44:10 (GMT) |
commit | 1f1196410a6e52305d91b5c6fe877f326f00cbc4 (patch) | |
tree | 4f076be221f3184ff5ddbc7409fcdf73291555b0 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 0964cb6c64d8ff67b97ced3459a5b054f935b66c (diff) | |
download | CMake-1f1196410a6e52305d91b5c6fe877f326f00cbc4.zip CMake-1f1196410a6e52305d91b5c6fe877f326f00cbc4.tar.gz CMake-1f1196410a6e52305d91b5c6fe877f326f00cbc4.tar.bz2 |
ENH: fix line length
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 830f100..b9ae7dd 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -300,7 +300,8 @@ void cmLocalUnixMakefileGenerator3 // Add a fast rule to build the target std::string makefileName = this->GetRelativeTargetDirectory(t->second); makefileName += "/build.make"; - std::string makeTargetName = this->GetRelativeTargetDirectory(t->second); + std::string makeTargetName = + this->GetRelativeTargetDirectory(t->second); makeTargetName += "/build"; localName = t->second.GetName(); localName += "/fast"; |