summaryrefslogtreecommitdiff
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-01 20:23:11 +0200
committerBrad King <brad.king@kitware.com>2015-06-04 09:06:09 -0400
commit6e570f857acd3322640db72112f2dc37b69396cf (patch)
treef8afeb7539aa6f1326f61f5f18ba43d419b4a18e /Source/cmMakefileTargetGenerator.cxx
parent3d8c6cd9648089c389c1496fb910d664a5773ab4 (diff)
downloadcmake-6e570f857acd3322640db72112f2dc37b69396cf.tar.gz
cmLocalGenerator: Remove 'optional' parameter from Convert.
Port callers away from it.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index d422e28f74..9ac9ddb267 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -1589,9 +1589,8 @@ std::string cmMakefileTargetGenerator::GetFrameworkFlags(std::string const& l)
if(emitted.insert(*i).second)
{
flags += fwSearchFlag;
- flags += this->Convert(*i,
- cmLocalGenerator::START_OUTPUT,
- cmLocalGenerator::SHELL, true);
+ flags += this->LocalGenerator
+ ->ConvertToOutputFormat(*i, cmLocalGenerator::SHELL);
flags += " ";
}
}