diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
| -rw-r--r-- | bitbake/lib/bb/cooker.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index f0d40a0673..1a05a312b4 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
| @@ -491,10 +491,16 @@ class BBCooker: | |||
| 491 | fn = taskdata.fn_index[fnid] | 491 | fn = taskdata.fn_index[fnid] |
| 492 | pn = self.status.pkg_fn[fn] | 492 | pn = self.status.pkg_fn[fn] |
| 493 | version = "%s:%s-%s" % self.status.pkg_pepvpr[fn] | 493 | version = "%s:%s-%s" % self.status.pkg_pepvpr[fn] |
| 494 | summary = self.status.summary[fn] | ||
| 495 | license = self.status.license[fn] | ||
| 496 | section = self.status.section[fn] | ||
| 494 | if pn not in target_tree["pn"]: | 497 | if pn not in target_tree["pn"]: |
| 495 | target_tree["pn"][pn] = {} | 498 | target_tree["pn"][pn] = {} |
| 496 | target_tree["pn"][pn]["filename"] = fn | 499 | target_tree["pn"][pn]["filename"] = fn |
| 497 | target_tree["pn"][pn]["version"] = version | 500 | target_tree["pn"][pn]["version"] = version |
| 501 | target_tree["pn"][pn]["summary"] = summary | ||
| 502 | target_tree["pn"][pn]["license"] = license | ||
| 503 | target_tree["pn"][pn]["section"] = section | ||
| 498 | if fnid not in seen_fnids: | 504 | if fnid not in seen_fnids: |
| 499 | seen_fnids.append(fnid) | 505 | seen_fnids.append(fnid) |
| 500 | packages = [] | 506 | packages = [] |
