summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-06-15 15:51:51 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-06-15 15:51:51 (GMT)
commit6071052835552a7dbdf7bd4f38263c6f206b26dd (patch)
treea8449abd8ac5803f2092cef86cbeb019cb0502f6 /Source/cmLocalUnixMakefileGenerator3.cxx
parent4c2c2cfd680afb1e34705e07c15e9a1bbe164cf9 (diff)
downloadCMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.zip
CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.gz
CMake-6071052835552a7dbdf7bd4f38263c6f206b26dd.tar.bz2
ENH: fix linelength
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 03e55a3..9ca09df 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1461,7 +1461,8 @@ void cmLocalUnixMakefileGenerator3
std::string mf2Dir = cmake::GetCMakeFilesDirectoryPostSlash();
mf2Dir += "Makefile2";
- commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),dir.c_str()));
+ commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
+ dir.c_str()));
this->CreateCDCommand(commands,
this->Makefile->GetHomeOutputDirectory(),
this->Makefile->GetStartOutputDirectory());
@@ -1486,7 +1487,8 @@ void cmLocalUnixMakefileGenerator3
dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE);
commands.clear();
depends.clear();
- commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),dir.c_str()));
+ commands.push_back(this->GetRecursiveMakeCall(mf2Dir.c_str(),
+ dir.c_str()));
this->CreateCDCommand(commands,
this->Makefile->GetHomeOutputDirectory(),
this->Makefile->GetStartOutputDirectory());