diff options
Diffstat (limited to 'Source/cmWin32ProcessExecution.cxx')
-rw-r--r-- | Source/cmWin32ProcessExecution.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmWin32ProcessExecution.cxx b/Source/cmWin32ProcessExecution.cxx index ddd1b49..ba736db 100644 --- a/Source/cmWin32ProcessExecution.cxx +++ b/Source/cmWin32ProcessExecution.cxx @@ -220,7 +220,7 @@ bool cmWin32ProcessExecution::BorlandRunCommand( output += buf; if (verbose) { - std::cout << buf << std::flush; + cmSystemTools::Stdout(buf); } } } @@ -230,7 +230,7 @@ bool cmWin32ProcessExecution::BorlandRunCommand( output += buf; if(verbose) { - std::cout << buf << std::flush; + cmSystemTools::Stdout(buf); } } @@ -791,7 +791,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */) buffer[len] = 0; if ( m_Verbose ) { - std::cout << buffer << std::flush; + cmSystemTools::Stdout(buffer); } output += buffer; have_some = true; @@ -803,7 +803,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */) buffer[len] = 0; if ( m_Verbose ) { - std::cout << buffer << std::flush; + cmSystemTools::Stdout(buffer); } output += buffer; have_some = true; |