diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-05 12:42:44 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-05-05 12:42:44 (GMT) |
commit | a2d7a92c88d23ae0566c647a61facb4f943b9a2f (patch) | |
tree | afffcc4b4b03da16b7d28a518ac7f861a4ab79cb /Source/cmaketest.cxx | |
parent | 444ba9e4420ce5410627ba2e46173c718f074853 (diff) | |
download | CMake-a2d7a92c88d23ae0566c647a61facb4f943b9a2f.zip CMake-a2d7a92c88d23ae0566c647a61facb4f943b9a2f.tar.gz CMake-a2d7a92c88d23ae0566c647a61facb4f943b9a2f.tar.bz2 |
BUG: Fix some dependencies for location of executables
Diffstat (limited to 'Source/cmaketest.cxx')
-rw-r--r-- | Source/cmaketest.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmaketest.cxx b/Source/cmaketest.cxx index cb90ae7..66b9ed1 100644 --- a/Source/cmaketest.cxx +++ b/Source/cmaketest.cxx @@ -103,8 +103,7 @@ int do_cmaketest (int argc, char **argv) // make sure the same generator is used // use this program as the cmake to be run, it should not // be run that way but the cmake object requires a vailid path - std::string cmakeCommand = CMAKE_BINARY_DIR; - cmakeCommand += "/bin"; + std::string cmakeCommand = EXECUTABLE_OUTPUT_PATH; cmakeCommand += "/"; cmakeCommand += intdir; cmakeCommand += "/cmake"; |