BUG: add newline for some versions of make

This commit is contained in:
Andy Cedilnik 2006-08-14 14:16:26 -04:00
parent 97f1c2b5f0
commit f6b2a42266

View File

@ -173,7 +173,7 @@ void cmLocalUnixMakefileGenerator3::WriteAllProgressVariable()
static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
ruleFileStream << "CMAKE_ALL_PROGRESS = "
<< gg->GetNumberOfProgressActionsInAll(this);
<< gg->GetNumberOfProgressActionsInAll(this) << "\n";
}
//----------------------------------------------------------------------------