diff options
| -rwxr-xr-x | bitbake/bin/bitbake-worker | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake-worker b/bitbake/bin/bitbake-worker index b2935f6ec0..dde2c9c8fc 100755 --- a/bitbake/bin/bitbake-worker +++ b/bitbake/bin/bitbake-worker | |||
| @@ -193,8 +193,9 @@ def fork_off_task(cfg, data, workerdata, fn, task, taskname, appends, taskdepdat | |||
| 193 | logger.critical(str(exc)) | 193 | logger.critical(str(exc)) |
| 194 | os._exit(1) | 194 | os._exit(1) |
| 195 | try: | 195 | try: |
| 196 | if not cfg.dry_run: | 196 | if cfg.dry_run: |
| 197 | return bb.build.exec_task(fn, taskname, the_data, cfg.profile) | 197 | return 0 |
| 198 | return bb.build.exec_task(fn, taskname, the_data, cfg.profile) | ||
| 198 | except: | 199 | except: |
| 199 | os._exit(1) | 200 | os._exit(1) |
| 200 | if not profiling: | 201 | if not profiling: |
