diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-10-09 10:34:50 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-10-15 11:25:12 +0200 |
commit | 46ad0d2183230d1af93242efbdcce20d55514efb (patch) | |
tree | d850f9a4d42df6e5bc39c8d01234051fd6ca7f29 /Source/cmMakefileExecutableTargetGenerator.cxx | |
parent | 2628dec12cb22546d2a21032f53fb0ef096faec8 (diff) | |
download | cmake-46ad0d2183230d1af93242efbdcce20d55514efb.tar.gz |
cmLocalGenerator: Use a converter in rule replacement API
The rule replacement API should not really be in cmLocalGenerator, but
it was historically, and this coupled many other things together here
too, such as output conversion. Make the output converter a parameter
so that rule replacement can be removed from cmLocalGenerator.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index da29b60791..92d6185c8f 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -396,7 +396,8 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink) for (std::vector<std::string>::iterator i = real_link_commands.begin(); i != real_link_commands.end(); ++i) { *i = launcher + *i; - this->LocalGenerator->ExpandRuleVariables(*i, vars); + this->LocalGenerator->ExpandRuleVariables(this->LocalGenerator, *i, + vars); } this->LocalGenerator->TargetImplib = ""; |