dont setpgrp() for now as it breaks system() and that is more important than ctrl+c handling of background processes

This commit is contained in:
Mike Frysinger 2006-06-26 20:42:36 +00:00
parent ef10d52745
commit 42705abc28

View File

@ -2970,10 +2970,6 @@ forkexec(REGISTER struct op *t, int *pin, int *pout, int act, char **wp)
if (resetsig) {
signal(SIGINT, SIG_DFL);
signal(SIGQUIT, SIG_DFL);
} else {
/* put non-interactive processes into a different process group.
* we don't support jobs, but this is at least sane: see Bug 659 */
bb_setpgrp;
}
if (t->type == TPAREN)