Index: dmake/unix/runargv.c =================================================================== RCS file: /cvs/tools/dmake/unix/runargv.c,v retrieving revision 1.13.2.4 diff -u -r1.13.2.4 runargv.c --- dmake/unix/runargv.c 22 Nov 2007 15:27:11 -0000 1.13.2.4 +++ dmake/unix/runargv.c 26 Nov 2007 03:35:14 -0000 @@ -227,13 +227,13 @@ * Command line. This fails if the path to the program contains spaces. * Process handle not inheritable. * Thread handle not inheritable. - * Set handle inheritance to FALSE. + * Set handle inheritance (stdout, stderr, etc.) to TRUE. * No creation flags. * Use parent's environment block. * Use parent's starting directory. * Pointer to STARTUPINFO structure. * Pointer to PROCESS_INFORMATION structure. */ - if( CreateProcess(NULL, argv[0], NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi) ) { + if( CreateProcess(NULL, argv[0], NULL, NULL, TRUE, 0, NULL, NULL, &si, &pi) ) { pid.pid = pi.hProcess; pid.tid = pi.hThread; } else {