ENH: replace all enabled languages in rule vars
This commit is contained in:
parent
9e08d07be2
commit
1603e16cc5
|
@ -1092,8 +1092,10 @@ cmLocalUnixMakefileGenerator::ExpandRuleVariables(std::string& s,
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
while(ruleReplaceVars[pos])
|
while(ruleReplaceVars[pos])
|
||||||
{
|
{
|
||||||
if(lang)
|
for(std::vector<std::string>::iterator i = enabledLanguages.begin();
|
||||||
|
i != enabledLanguages.end(); ++i)
|
||||||
{
|
{
|
||||||
|
lang = i->c_str();
|
||||||
std::string replace = "<";
|
std::string replace = "<";
|
||||||
replace += ruleReplaceVars[pos];
|
replace += ruleReplaceVars[pos];
|
||||||
replace += ">";
|
replace += ">";
|
||||||
|
@ -1112,8 +1114,8 @@ cmLocalUnixMakefileGenerator::ExpandRuleVariables(std::string& s,
|
||||||
{
|
{
|
||||||
cmSystemTools::ReplaceString(s, actualReplace.c_str(), replace.c_str());
|
cmSystemTools::ReplaceString(s, actualReplace.c_str(), replace.c_str());
|
||||||
}
|
}
|
||||||
pos++;
|
|
||||||
}
|
}
|
||||||
|
pos++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue