diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-02 18:18:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-02 18:18:38 (GMT) |
commit | 16db85a65144a625098fc7a2cb0c909ae9b6671e (patch) | |
tree | 65ee2485255b692b494722100b888cb66df6ad76 /Source | |
parent | 3851ac2416a5fd53759128d22dd5ead3da7922dd (diff) | |
download | CMake-16db85a65144a625098fc7a2cb0c909ae9b6671e.zip CMake-16db85a65144a625098fc7a2cb0c909ae9b6671e.tar.gz CMake-16db85a65144a625098fc7a2cb0c909ae9b6671e.tar.bz2 |
BUG: add a space around the compile flags
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 7ab9b2a..25cc8f5 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2379,6 +2379,7 @@ void cmLocalUnixMakefileGenerator::OutputSourceObjectBuildRules(std::ostream& fo if((*source)->GetProperty("COMPILE_FLAGS")) { compileFlags += (*source)->GetProperty("COMPILE_FLAGS"); + compileFlags += " "; } this->OutputBuildObjectFromSource(fout, shortName.c_str(), |