Explorar el Código

Take computation out of loop.

Stephen Kelly hace 10 años
padre
commit
d59913f001
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 3 - 1
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -2393,11 +2393,13 @@ void cmLocalUnixMakefileGenerator3
     // On UNIX we must construct a single shell command to change
     // directory and build because make resets the directory between
     // each command.
+    std::string outputForExisting =
+                          this->ConvertToOutputForExisting(tgtDir, relRetDir);
     std::vector<std::string>::iterator i = commands.begin();
     for (; i != commands.end(); ++i)
       {
       std::string cmd = cd_cmd;
-      cmd += this->ConvertToOutputForExisting(tgtDir, relRetDir);
+      cmd += outputForExisting;
       cmd += " && ";
       cmd += *i;
       *i = cmd;