Browse Source

BUG: no +=+

Bill Hoffman 24 năm trước cách đây
mục cha
commit
3cb9f60375
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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