summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-08-17 12:12:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-19 18:05:46 +0100
commit3c3ff928822a525024c7a679a517bcf53af5022f (patch)
tree5d44c9eee299cdb54d6a66951e359f257a7e6823 /bitbake/lib/bb/cooker.py
parentb84bf58c192e8b289f57fd6a22c0ae71bf893b2a (diff)
downloadpoky-3c3ff928822a525024c7a679a517bcf53af5022f.tar.gz
bitbake: cooker: drop appendlist
Now we have the bbappends list and all users have been converted over to use it, we don't need this anymore. (Bitbake rev: 279770c42d4c63aa2cebce331b55a92a564b50ac) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5452debefd..6dc9f1981d 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -1654,7 +1654,6 @@ class CookerExit(bb.event.Event):
1654 1654
1655class CookerCollectFiles(object): 1655class CookerCollectFiles(object):
1656 def __init__(self, priorities): 1656 def __init__(self, priorities):
1657 self.appendlist = {}
1658 self.bbappends = [] 1657 self.bbappends = []
1659 self.bbfile_config_priorities = priorities 1658 self.bbfile_config_priorities = priorities
1660 1659
@@ -1750,10 +1749,6 @@ class CookerCollectFiles(object):
1750 for f in bbappend: 1749 for f in bbappend:
1751 base = os.path.basename(f).replace('.bbappend', '.bb') 1750 base = os.path.basename(f).replace('.bbappend', '.bb')
1752 self.bbappends.append((base, f)) 1751 self.bbappends.append((base, f))
1753 if not base in self.appendlist:
1754 self.appendlist[base] = []
1755 if f not in self.appendlist[base]:
1756 self.appendlist[base].append(f)
1757 1752
1758 # Find overlayed recipes 1753 # Find overlayed recipes
1759 # bbfiles will be in priority order which makes this easy 1754 # bbfiles will be in priority order which makes this easy