summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-08-27 11:44:53 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-08-27 13:21:14 (GMT)
commit2722c4dcc55605b7946f3c9bfa4b2fe5ce4161cb (patch)
tree98f89124cd87fb8eb5addd2db60fa7b60696e6f6 /Source/cmLocalUnixMakefileGenerator3.cxx
parent112c87b28afac71617bcbb552ae1f2027bb548b6 (diff)
downloadCMake-2722c4dcc55605b7946f3c9bfa4b2fe5ce4161cb.zip
CMake-2722c4dcc55605b7946f3c9bfa4b2fe5ce4161cb.tar.gz
CMake-2722c4dcc55605b7946f3c9bfa4b2fe5ce4161cb.tar.bz2
Makefiles: Remove useless use of Convert
Convert with NONE and UNCHANGED is a no-op.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index f026b12..e148887 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/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,