From f6b2a42266393866f9914f04d803ba4d3a4b29d8 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Mon, 14 Aug 2006 14:16:26 -0400 Subject: [PATCH] BUG: add newline for some versions of make --- Source/cmLocalUnixMakefileGenerator3.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 0640e0d98..4c5347046 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -173,7 +173,7 @@ void cmLocalUnixMakefileGenerator3::WriteAllProgressVariable() static_cast(this->GlobalGenerator); ruleFileStream << "CMAKE_ALL_PROGRESS = " - << gg->GetNumberOfProgressActionsInAll(this); + << gg->GetNumberOfProgressActionsInAll(this) << "\n"; } //----------------------------------------------------------------------------