Hopefully better behavior when 4coder is the parent of GNU Make on Windows
This commit is contained in:
parent
c27248dcf0
commit
5e0670ed27
|
@ -405,8 +405,9 @@ Sys_CLI_Call_Sig(system_cli_call){
|
|||
STARTUPINFO startup = {};
|
||||
startup.cb = sizeof(STARTUPINFO);
|
||||
startup.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
|
||||
startup.hStdError = out_write;
|
||||
startup.hStdInput = INVALID_HANDLE_VALUE;
|
||||
startup.hStdOutput = out_write;
|
||||
startup.hStdError = out_write;
|
||||
startup.wShowWindow = SW_HIDE;
|
||||
|
||||
PROCESS_INFORMATION info = {};
|
||||
|
|
Loading…
Reference in New Issue