diff options
Diffstat (limited to 'scripts/oe-check-sstate')
| -rwxr-xr-x | scripts/oe-check-sstate | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/oe-check-sstate b/scripts/oe-check-sstate index 8aab86adb3..d06efe436a 100755 --- a/scripts/oe-check-sstate +++ b/scripts/oe-check-sstate | |||
| @@ -40,13 +40,13 @@ def translate_virtualfns(tasks): | |||
| 40 | try: | 40 | try: |
| 41 | tinfoil.prepare(False) | 41 | tinfoil.prepare(False) |
| 42 | 42 | ||
| 43 | pkg_fn = tinfoil.cooker.recipecache.pkg_fn | 43 | recipecaches = tinfoil.cooker.recipecaches |
| 44 | outtasks = [] | 44 | outtasks = [] |
| 45 | for task in tasks: | 45 | for task in tasks: |
| 46 | fn, taskname = task.rsplit(':', 1) | 46 | (mc, fn, taskname) = bb.runqueue.split_tid(task) |
| 47 | if taskname.endswith('_setscene'): | 47 | if taskname.endswith('_setscene'): |
| 48 | taskname = taskname[:-9] | 48 | taskname = taskname[:-9] |
| 49 | outtasks.append('%s:%s' % (pkg_fn[fn], taskname)) | 49 | outtasks.append('%s:%s' % (recipecaches[mc].pkg_fn[fn], taskname)) |
| 50 | finally: | 50 | finally: |
| 51 | tinfoil.shutdown() | 51 | tinfoil.shutdown() |
| 52 | return outtasks | 52 | return outtasks |
