[bitbake-devel] [PATCH 09/13] cooker: drop appendlist

Paul Eggleton paul.eggleton at linux.intel.com
Mon Aug 17 11:12:24 UTC 2015


Now we have the bbappends list and all users have been converted over to
use it, we don't need this anymore.

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
---
 lib/bb/cooker.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 5452deb..6dc9f19 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1654,7 +1654,6 @@ class CookerExit(bb.event.Event):
 
 class CookerCollectFiles(object):
     def __init__(self, priorities):
-        self.appendlist = {}
         self.bbappends = []
         self.bbfile_config_priorities = priorities
 
@@ -1750,10 +1749,6 @@ class CookerCollectFiles(object):
         for f in bbappend:
             base = os.path.basename(f).replace('.bbappend', '.bb')
             self.bbappends.append((base, f))
-            if not base in self.appendlist:
-               self.appendlist[base] = []
-            if f not in self.appendlist[base]:
-                self.appendlist[base].append(f)
 
         # Find overlayed recipes
         # bbfiles will be in priority order which makes this easy
-- 
2.1.0




More information about the bitbake-devel mailing list