summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2012-07-20 15:09:52 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2012-07-20 15:09:52 (GMT)
commit4ddd3b9fd1f6f083561ba47acf6ed3cfc3d871c9 (patch)
tree4a10a28dba49732d62a5276e17d4419f7ab8f5b2 /Source/cmake.cxx
parentcaeca30936fee174fd36cb3bb0ecb45847aae873 (diff)
downloadCMake-4ddd3b9fd1f6f083561ba47acf6ed3cfc3d871c9.zip
CMake-4ddd3b9fd1f6f083561ba47acf6ed3cfc3d871c9.tar.gz
CMake-4ddd3b9fd1f6f083561ba47acf6ed3cfc3d871c9.tar.bz2
Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
Using OUTPUT_MERGE can cause the output to be jumbled in some cases.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 451aec8..f523423 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1423,7 +1423,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
int retval = 0;
int timeout = 0;
if ( cmSystemTools::RunSingleCommand(command.c_str(), 0, &retval,
- directory.c_str(), cmSystemTools::OUTPUT_MERGE, timeout) )
+ directory.c_str(), cmSystemTools::OUTPUT_NORMAL, timeout) )
{
return retval;
}