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