Browse Source

Makefiles: Remove useless use of Convert

Convert with NONE and UNCHANGED is a no-op.
Stephen Kelly 9 years ago
parent
commit
2722c4dcc5
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 1 - 2
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -835,8 +835,7 @@ std::string cmLocalUnixMakefileGenerator3::GetRelativeTargetDirectory(
 {
   std::string dir = this->HomeRelativeOutputPath;
   dir += this->GetTargetDirectory(target);
-  return this->Convert(dir, cmOutputConverter::NONE,
-                       cmOutputConverter::UNCHANGED);
+  return dir;
 }
 
 void cmLocalUnixMakefileGenerator3::AppendFlags(std::string& flags,