summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-08-14 18:16:26 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-08-14 18:16:26 (GMT)
commitf6b2a42266393866f9914f04d803ba4d3a4b29d8 (patch)
tree820813c4e32303306bc0863b86b145fd7bbb7223 /Source
parent97f1c2b5f0d5f2356dbc1007685d6366b5ff5151 (diff)
downloadCMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.zip
CMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.tar.gz
CMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.tar.bz2
BUG: add newline for some versions of make
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 0640e0d..4c53470 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -173,7 +173,7 @@ void cmLocalUnixMakefileGenerator3::WriteAllProgressVariable()
static_cast<cmGlobalUnixMakefileGenerator3*>(this->GlobalGenerator);
ruleFileStream << "CMAKE_ALL_PROGRESS = "
- << gg->GetNumberOfProgressActionsInAll(this);
+ << gg->GetNumberOfProgressActionsInAll(this) << "\n";
}
//----------------------------------------------------------------------------