diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
| -rw-r--r-- | bitbake/lib/bb/runqueue.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 4f988dfdc9..d1e8cd11ee 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
| @@ -1028,10 +1028,10 @@ class RunQueueExecute: | |||
| 1028 | 1028 | ||
| 1029 | def finish_now(self): | 1029 | def finish_now(self): |
| 1030 | if self.stats.active: | 1030 | if self.stats.active: |
| 1031 | bb.msg.note(1, bb.msg.domain.RunQueue, "Sending SIGINT to remaining %s tasks" % self.stats.active) | 1031 | bb.msg.note(1, bb.msg.domain.RunQueue, "Sending SIGTERM to remaining %s tasks" % self.stats.active) |
| 1032 | for k, v in self.build_pids.iteritems(): | 1032 | for k, v in self.build_pids.iteritems(): |
| 1033 | try: | 1033 | try: |
| 1034 | os.kill(-k, signal.SIGINT) | 1034 | os.kill(-k, signal.SIGTERM) |
| 1035 | except: | 1035 | except: |
| 1036 | pass | 1036 | pass |
| 1037 | for pipe in self.build_pipes: | 1037 | for pipe in self.build_pipes: |
