summaryrefslogtreecommitdiffstats
path: root/bin/bitbake-layers
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-05-22 15:25:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-22 16:22:42 +0100
commit5d941631ad7198737d9a5c5a920a9062fa0431f8 (patch)
tree6789a3fe900d6db3ffbe7a261c2ceb70630eda4a /bin/bitbake-layers
parentff9f62fd5f76892ad41a5329b75472501e17e712 (diff)
downloadbitbake-contrib-5d941631ad7198737d9a5c5a920a9062fa0431f8.tar.gz
bitbake-layers: fix for move of calc_bbfile_priority within cooker
calc_bbfile_priority is now in CookerCollectFiles which can be accessed on the collection attribute of a cooker instance. Fixes [YOCTO #4513]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake-layers')
-rwxr-xr-xbin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-layers b/bin/bitbake-layers
index 0c4ac2d49..86a17a55e 100755
--- a/bin/bitbake-layers
+++ b/bin/bitbake-layers
@@ -233,7 +233,7 @@ Options:
# We are largely guessing about PN, PV and the preferred version here,
# but we have no choice since skipped recipes are not fully parsed
skiplist = self.bbhandler.cooker.skiplist.keys()
- skiplist.sort( key=lambda fileitem: self.bbhandler.cooker.calc_bbfile_priority(fileitem) )
+ skiplist.sort( key=lambda fileitem: self.bbhandler.cooker.collection.calc_bbfile_priority(fileitem) )
skiplist.reverse()
for fn in skiplist:
recipe_parts = os.path.splitext(os.path.basename(fn))[0].split('_')