summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-08-13 13:26:48 -0400
committerCMake Topic Stage <kwrobot@kitware.com>2012-08-13 13:26:48 -0400
commite93d9c5c2b8095cf94ebb92763604db0108e0818 (patch)
tree7abce48f81fc9aeb0038ff19f124bc2dfae6de28
parente85650909332f6ca84917e1b003192e6207ef304 (diff)
parent4ddd3b9fd1f6f083561ba47acf6ed3cfc3d871c9 (diff)
downloadcmake-e93d9c5c2b8095cf94ebb92763604db0108e0818.tar.gz
Merge topic 'use_normal_ouput_with_chdir'
4ddd3b9 Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index fdc42fa2b3..24ac96610e 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -1421,7 +1421,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;
}