summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 7dab38e287..492cf6e3a2 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -455,6 +455,7 @@ class BBCooker:
455 summary = self.status.summary[fn] 455 summary = self.status.summary[fn]
456 lic = self.status.license[fn] 456 lic = self.status.license[fn]
457 section = self.status.section[fn] 457 section = self.status.section[fn]
458 description = self.status.description[fn]
458 if pn not in depend_tree["pn"]: 459 if pn not in depend_tree["pn"]:
459 depend_tree["pn"][pn] = {} 460 depend_tree["pn"][pn] = {}
460 depend_tree["pn"][pn]["filename"] = fn 461 depend_tree["pn"][pn]["filename"] = fn
@@ -462,6 +463,7 @@ class BBCooker:
462 depend_tree["pn"][pn]["summary"] = summary 463 depend_tree["pn"][pn]["summary"] = summary
463 depend_tree["pn"][pn]["license"] = lic 464 depend_tree["pn"][pn]["license"] = lic
464 depend_tree["pn"][pn]["section"] = section 465 depend_tree["pn"][pn]["section"] = section
466 depend_tree["pn"][pn]["description"] = description
465 467
466 if fnid not in seen_fnids: 468 if fnid not in seen_fnids:
467 seen_fnids.append(fnid) 469 seen_fnids.append(fnid)