BUG: Fix path to CMake executables when run from bootstrap build.

This commit is contained in:
Brad King 2007-08-31 09:09:41 -04:00
parent 56c0bbc83f
commit 54a470dd03
1 changed files with 1 additions and 0 deletions

View File

@ -2535,6 +2535,7 @@ std::string cmake::FindCMakeProgram(const char* name) const
#else
// Only for bootstrap
path += mf->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH");
path += "/";
path += name;
path += cmSystemTools::GetExecutableExtension();
#endif