From 54a470dd0372cfaec20534c4b12735b5dddcaff9 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 31 Aug 2007 09:09:41 -0400 Subject: BUG: Fix path to CMake executables when run from bootstrap build. --- Source/cmake.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 52f2ef0..bc1d381 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -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 -- cgit v0.12