mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
cmLocalGenerator: Move variable to where it can be used easily
This commit is contained in:
parent
8b0e479568
commit
6cd27a853a
@ -722,6 +722,8 @@ std::string cmLocalGenerator::ExpandRuleVariable(
|
||||
std::map<std::string, std::string>::iterator compIt =
|
||||
compilers.find(variable);
|
||||
|
||||
std::string replace = this->Makefile->GetSafeDefinition(variable);
|
||||
|
||||
if (compIt != compilers.end()) {
|
||||
std::string arg1 = compIt->first + "_ARG1";
|
||||
compilerArg1 = this->Makefile->GetDefinition(arg1);
|
||||
@ -743,7 +745,6 @@ std::string cmLocalGenerator::ExpandRuleVariable(
|
||||
cmSystemTools::ReplaceString(actualReplace, "${LANG}", lang);
|
||||
}
|
||||
if (actualReplace == variable) {
|
||||
std::string replace = this->Makefile->GetSafeDefinition(variable);
|
||||
// if the variable is not a FLAG then treat it like a path
|
||||
if (variable.find("_FLAG") == variable.npos) {
|
||||
std::string ret = this->ConvertToOutputForExisting(replace);
|
||||
|
Loading…
Reference in New Issue
Block a user