diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 19173ae7ba..237019c08e 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -642,7 +642,8 @@ class BBCooker: | |||
642 | # Calculate priorities for each file | 642 | # Calculate priorities for each file |
643 | matched = set() | 643 | matched = set() |
644 | for p in self.status.pkg_fn: | 644 | for p in self.status.pkg_fn: |
645 | self.status.bbfile_priority[p] = self.calc_bbfile_priority(p, matched) | 645 | realfn, cls = bb.cache.Cache.virtualfn2realfn(p) |
646 | self.status.bbfile_priority[p] = self.calc_bbfile_priority(realfn, matched) | ||
646 | 647 | ||
647 | # Don't show the warning if the BBFILE_PATTERN did match .bbappend files | 648 | # Don't show the warning if the BBFILE_PATTERN did match .bbappend files |
648 | unmatched = set() | 649 | unmatched = set() |