diff options
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 572b87227..7d1f48aee 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1107,6 +1107,8 @@ class RunQueueExecute: # themselves bblogger.handlers = [bb.event.LogHandler()] + signal.signal(signal.SIGCHLD, signal.SIG_DFL) + self.rq.state = runQueueChildProcess # Make the child the process group leader os.setpgid(0, 0) |