From 8cac76825f335148548bb2bb1491b1a220de6187 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Wed, 2 Oct 2002 11:15:07 -0400 Subject: [PATCH] Fix bug in borland run command --- Source/cmSystemTools.cxx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 748b95faf..cc24ddb06 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1414,12 +1414,6 @@ bool WindowsRunCommand(const char* command, const char* dir, //main program loop { Sleep(10); - //std::cout << "Check for process..." << std::endl; - GetExitCodeProcess(pi.hProcess,&exit); - -//while the process is running - if (exit != STILL_ACTIVE) break; - //check to see if there is any data to read from stdout //std::cout << "Peek for data..." << std::endl; PeekNamedPipe(read_stdout,buf,1023,&bread,&avail,NULL); @@ -1441,23 +1435,26 @@ bool WindowsRunCommand(const char* command, const char* dir, std::cout << buf << std::flush; } } - output += "\n"; } else { ReadFile(read_stdout,buf,1023,&bread,NULL); output += buf; - output += "\n"; if(verbose) { std::cout << buf << std::flush; - } } } + //std::cout << "Check for process..." << std::endl; + GetExitCodeProcess(pi.hProcess,&exit); + +//while the process is running + if (exit != STILL_ACTIVE) break; + } CloseHandle(pi.hThread); CloseHandle(pi.hProcess);