summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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