Browse Source

BUG: no +=+

Bill Hoffman 24 years ago
parent
commit
3cb9f60375
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmUnixMakefileGenerator.cxx

+ 1 - 1
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