summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-08-31 13:09:41 (GMT)
committerBrad King <brad.king@kitware.com>2007-08-31 13:09:41 (GMT)
commit54a470dd0372cfaec20534c4b12735b5dddcaff9 (patch)
tree05fc531b14733224682518f5f35cd26eb1895383 /Source/cmake.cxx
parent56c0bbc83f079d0f3ff4487360a44271a6724778 (diff)
downloadCMake-54a470dd0372cfaec20534c4b12735b5dddcaff9.zip
CMake-54a470dd0372cfaec20534c4b12735b5dddcaff9.tar.gz
CMake-54a470dd0372cfaec20534c4b12735b5dddcaff9.tar.bz2
BUG: Fix path to CMake executables when run from bootstrap build.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx1
1 files changed, 1 insertions, 0 deletions
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