bitbake: cooker: Rename confusing buildDepgraph task to handlePrefProviders

(Bitbake rev: a25722175bf61f22961f45dbd356cb6d79864b35)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2013-05-10 15:26:03 +00:00
parent 8c7a23ed3f
commit 9ed7cd13fd
1 changed files with 3 additions and 4 deletions

View File

@ -712,7 +712,7 @@ class BBCooker:
else:
bb.fatal(msg)
def buildDepgraph( self ):
def handlePrefProviders(self):
localdata = data.createCopy(self.configuration.data)
bb.data.update_data(localdata)
@ -729,8 +729,6 @@ class BBCooker:
providerlog.error("conflicting preferences for %s: both %s and %s specified", providee, provider, self.status.preferred[providee])
self.status.preferred[providee] = provider
self.status.bbfile_priority = self.collection.collection_priorities(self.status.pkg_fn)
def findCoreBaseFiles(self, subdir, configfile):
corebase = self.configuration.data.getVar('COREBASE', True) or ""
paths = []
@ -1299,7 +1297,8 @@ class BBCooker:
if self.parser.error:
sys.exit(1)
self.show_appends_with_no_recipes()
self.buildDepgraph()
self.handlePrefProviders()
self.status.bbfile_priority = self.collection.collection_priorities(self.status.pkg_fn)
self.state = state.running
return None