浏览代码

BUG: no +=+

Bill Hoffman 24 年之前
父节点
当前提交
3cb9f60375
共有 1 个文件被更改,包括 1 次插入1 次删除
  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