Ken Martin пре 22 година
родитељ
комит
103f115f25
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      Source/cmLocalUnixMakefileGenerator.cxx

+ 2 - 2
Source/cmLocalUnixMakefileGenerator.cxx

@@ -455,7 +455,7 @@ void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
          (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
          (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
          (l->second.GetType() == cmTarget::MODULE_LIBRARY))
          (l->second.GetType() == cmTarget::MODULE_LIBRARY))
         {
         {
-        std::string path = m_LibraryOutputPath;
+        path = m_LibraryOutputPath;
         path += this->GetFullTargetName(l->first.c_str(), l->second);
         path += this->GetFullTargetName(l->first.c_str(), l->second);
         fout << " \\\n" 
         fout << " \\\n" 
              << cmSystemTools::ConvertToOutputPath(path.c_str());
              << cmSystemTools::ConvertToOutputPath(path.c_str());
@@ -470,7 +470,7 @@ void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
          l->second.GetType() == cmTarget::WIN32_EXECUTABLE) &&
          l->second.GetType() == cmTarget::WIN32_EXECUTABLE) &&
         l->second.IsInAll())
         l->second.IsInAll())
       {
       {
-      std::string path = m_ExecutableOutputPath;
+      path = m_ExecutableOutputPath;
       path += this->GetFullTargetName(l->first.c_str(), l->second);
       path += this->GetFullTargetName(l->first.c_str(), l->second);
       fout << " \\\n" << cmSystemTools::ConvertToOutputPath(path.c_str());
       fout << " \\\n" << cmSystemTools::ConvertToOutputPath(path.c_str());
       }
       }