]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
cooker: drop appendlist
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 17 Aug 2015 11:12:24 +0000 (12:12 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 18 Aug 2015 11:12:07 +0000 (12:12 +0100)
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@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/cooker.py

index 5452debefd0ee014332ab46bdc8e1c0d8ec2e289..6dc9f1981d3e93b1866487b09fef083b078f4056 100644 (file)
@@ -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