diff options
-rwxr-xr-x | bitbake/bin/bitbake-worker | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-worker b/bitbake/bin/bitbake-worker index a4e8914eec..5fcffddd4d 100755 --- a/bitbake/bin/bitbake-worker +++ b/bitbake/bin/bitbake-worker | |||
@@ -159,7 +159,8 @@ def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdat | |||
159 | pipeout = os.fdopen(pipeout, 'wb', 0) | 159 | pipeout = os.fdopen(pipeout, 'wb', 0) |
160 | pid = os.fork() | 160 | pid = os.fork() |
161 | except OSError as e: | 161 | except OSError as e: |
162 | bb.msg.fatal("RunQueue", "fork failed: %d (%s)" % (e.errno, e.strerror)) | 162 | logger.critical("fork failed: %d (%s)" % (e.errno, e.strerror)) |
163 | sys.exit(1) | ||
163 | 164 | ||
164 | if pid == 0: | 165 | if pid == 0: |
165 | def child(): | 166 | def child(): |