Merge topic 'use_normal_ouput_with_chdir'

4ddd3b9 Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
This commit is contained in:
David Cole 2012-08-13 13:26:48 -04:00 committed by CMake Topic Stage
commit e93d9c5c2b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}