summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-layers
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/bitbake-layers')
-rwxr-xr-xbitbake/bin/bitbake-layers20
1 files changed, 20 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers
index 135096bce7..302f020ba1 100755
--- a/bitbake/bin/bitbake-layers
+++ b/bitbake/bin/bitbake-layers
@@ -634,6 +634,26 @@ The .bbappend file can impact the dependency.
634 self.bbhandler.cooker_data)[0][0] 634 self.bbhandler.cooker_data)[0][0]
635 self.check_cross_depends("RDEPENDS", layername, f, best, options.show_filenames, ignore_layers) 635 self.check_cross_depends("RDEPENDS", layername, f, best, options.show_filenames, ignore_layers)
636 636
637 # The RRECOMMENDS
638 all_rrecs = self.bbhandler.cooker_data.runrecs[f].values()
639 # Remove the duplicated or null one.
640 sorted_rrecs = {}
641 # The all_rrecs is the list in list, so we need two for loops
642 for k1 in all_rrecs:
643 for k2 in k1:
644 sorted_rrecs[k2] = 1
645 all_rrecs = sorted_rrecs.keys()
646 for rrec in all_rrecs:
647 all_p = bb.providers.getRuntimeProviders(self.bbhandler.cooker_data, rrec)
648 if all_p:
649 if f in all_p:
650 # The recipe provides this one itself, ignore
651 continue
652 best = bb.providers.filterProvidersRunTime(all_p, rrec,
653 self.bbhandler.config_data,
654 self.bbhandler.cooker_data)[0][0]
655 self.check_cross_depends("RRECOMMENDS", layername, f, best, options.show_filenames, ignore_layers)
656
637 # The inherit class 657 # The inherit class
638 cls_re = re.compile('classes/') 658 cls_re = re.compile('classes/')
639 if f in self.bbhandler.cooker_data.inherits: 659 if f in self.bbhandler.cooker_data.inherits: