diff options
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r-- | Source/cmFindProgramCommand.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index aef1a74..ce97478 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -90,7 +90,10 @@ bool cmFindProgramCommand::Invoke(std::vector<std::string>& args) m_Makefile->AddDefinition(define, result.c_str()); return true; } - - return false; + std::string error = "Faild to find program: \""; + error += *i; + error += "\" "; + this->SetError(error.c_str()); + return true; } |