summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-07 22:04:53 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-07 22:04:53 (GMT)
commit3cb9f603756d2c8a7a14864d3efbd4dd27a54a8c (patch)
tree0b97d87d6af0013752d5259922f43e7a593d2c93 /Source/cmUnixMakefileGenerator.cxx
parent39766efaaaf7ce30f6bc2d7f1f98252eab5294b3 (diff)
downloadCMake-3cb9f603756d2c8a7a14864d3efbd4dd27a54a8c.zip
CMake-3cb9f603756d2c8a7a14864d3efbd4dd27a54a8c.tar.gz
CMake-3cb9f603756d2c8a7a14864d3efbd4dd27a54a8c.tar.bz2
BUG: no +=+
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx
index 49d92a0..48eccbc 100644
--- a/Source/cmUnixMakefileGenerator.cxx
+++ b/Source/cmUnixMakefileGenerator.cxx
@@ -1459,7 +1459,7 @@ void cmUnixMakefileGenerator::OutputSourceObjectBuildRules(std::ostream& fout)
}
compileCommand += "$(INCLUDE_FLAGS) -c ";
compileCommand += source->GetFullPath();
- compileCommand +=+ " -o ";
+ compileCommand += " -o ";
compileCommand += objectFile;
}
else