summaryrefslogtreecommitdiffstats
path: root/Source/cmTryRunCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-01-12 18:49:32 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-01-12 18:49:32 (GMT)
commit4bdca3b404d5fafe89779ea5cd1dce50018afbcc (patch)
treec06fe6709bb531b4bac5f2dc23a25bf6a338cd65 /Source/cmTryRunCommand.cxx
parent1fd9060406e9c40ac5b3a8baf0ee7365d2e353fc (diff)
downloadCMake-4bdca3b404d5fafe89779ea5cd1dce50018afbcc.zip
CMake-4bdca3b404d5fafe89779ea5cd1dce50018afbcc.tar.gz
CMake-4bdca3b404d5fafe89779ea5cd1dce50018afbcc.tar.bz2
ENH: put CmakeTmp into CMakeFiles
Diffstat (limited to 'Source/cmTryRunCommand.cxx')
-rw-r--r--Source/cmTryRunCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTryRunCommand.cxx b/Source/cmTryRunCommand.cxx
index b4f1456..a2179d8 100644
--- a/Source/cmTryRunCommand.cxx
+++ b/Source/cmTryRunCommand.cxx
@@ -67,7 +67,7 @@ bool cmTryRunCommand::InitialPass(std::vector<std::string> const& argv)
int res = cmTryCompileCommand::CoreTryCompileCode(m_Makefile, tryCompile, false);
// now try running the command if it compiled
- std::string binaryDirectory = argv[2] + "/CMakeTmp";
+ std::string binaryDirectory = argv[2] + "/CMakeFiles/CMakeTmp";
if (!res)
{
int retVal = -1;