expands reg values
This commit is contained in:
parent
639f1fa239
commit
dbfc72c6b5
|
@ -91,6 +91,7 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args)
|
|||
}
|
||||
else
|
||||
{
|
||||
cmSystemTools::ExpandRegistryValues(args[j]);
|
||||
path.push_back(args[j]);
|
||||
}
|
||||
}
|
||||
|
@ -107,6 +108,7 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args)
|
|||
// expand variables
|
||||
std::string exp = args[j];
|
||||
m_Makefile->ExpandVariablesInString(exp);
|
||||
cmSystemTools::ExpandRegistryValues(exp);
|
||||
path.push_back(exp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue