diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-14 14:51:08 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-14 14:51:08 (GMT) |
commit | 6b5403c5861771dee082c0040a6f91162ccb9c32 (patch) | |
tree | 825586a8571716b7a376507f984a0d59f1ada10e /Source/cmMakefileTargetGenerator.cxx | |
parent | c76a2bb4b22c06b47955a8f5dde4629633ff76a1 (diff) | |
download | CMake-6b5403c5861771dee082c0040a6f91162ccb9c32.zip CMake-6b5403c5861771dee082c0040a6f91162ccb9c32.tar.gz CMake-6b5403c5861771dee082c0040a6f91162ccb9c32.tar.bz2 |
ENH: fix for no newline on some makes fix for ctest and some symlinks
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index ae65daa..098aa42 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -1187,6 +1187,7 @@ void cmMakefileTargetGenerator::WriteProgressVariables(unsigned long total, } *progressFileStream << "\n"; } + *progressFileStream << "\n"; current += this->NumberOfProgressActions; delete progressFileStream; } |