diff options
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r-- | Source/cmFindProgramCommand.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index 2dcaf14..92d4bb3 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -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); } } |