mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 13:19:51 -05:00
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.
This commit is contained in:
@@ -1005,7 +1005,7 @@ void cmLocalUnixMakefileGenerator3::AppendCustomCommand(
|
||||
|
||||
launcher = val;
|
||||
launcher += " ";
|
||||
this->ExpandRuleVariables(launcher, vars);
|
||||
this->ExpandRuleVariables(this, launcher, vars);
|
||||
if (!launcher.empty()) {
|
||||
launcher += " ";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user