diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-14 18:16:26 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-14 18:16:26 (GMT) |
commit | f6b2a42266393866f9914f04d803ba4d3a4b29d8 (patch) | |
tree | 820813c4e32303306bc0863b86b145fd7bbb7223 | |
parent | 97f1c2b5f0d5f2356dbc1007685d6366b5ff5151 (diff) | |
download | CMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.zip CMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.tar.gz CMake-f6b2a42266393866f9914f04d803ba4d3a4b29d8.tar.bz2 |
BUG: add newline for some versions of make
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
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"; } //---------------------------------------------------------------------------- |