Просмотр исходного кода

Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.

Using OUTPUT_MERGE can cause the output to be jumbled in some cases.
Bill Hoffman 13 лет назад
Родитель
Сommit
4ddd3b9fd1
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Source/cmake.cxx

+ 1 - 1
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;
         }