summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 97dd3063a9..75c77b7112 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -471,6 +471,7 @@ class BBCooker:
471 description = self.status.description[fn] 471 description = self.status.description[fn]
472 rdepends = self.status.rundeps[fn] 472 rdepends = self.status.rundeps[fn]
473 rrecs = self.status.runrecs[fn] 473 rrecs = self.status.runrecs[fn]
474 inherits = self.status.inherits.get(fn, None)
474 if pn not in depend_tree["pn"]: 475 if pn not in depend_tree["pn"]:
475 depend_tree["pn"][pn] = {} 476 depend_tree["pn"][pn] = {}
476 depend_tree["pn"][pn]["filename"] = fn 477 depend_tree["pn"][pn]["filename"] = fn
@@ -479,6 +480,7 @@ class BBCooker:
479 depend_tree["pn"][pn]["license"] = lic 480 depend_tree["pn"][pn]["license"] = lic
480 depend_tree["pn"][pn]["section"] = section 481 depend_tree["pn"][pn]["section"] = section
481 depend_tree["pn"][pn]["description"] = description 482 depend_tree["pn"][pn]["description"] = description
483 depend_tree["pn"][pn]["inherits"] = inherits
482 484
483 if fnid not in seen_fnids: 485 if fnid not in seen_fnids:
484 seen_fnids.append(fnid) 486 seen_fnids.append(fnid)