From: Richard Purdie Date: Fri, 10 May 2013 15:26:03 +0000 (+0000) Subject: bitbake: cooker: Rename confusing buildDepgraph task to handlePrefProviders X-Git-Tag: rev_ivi_2015_02_04~12611 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e85adc023d03c87b90e66a8c58f1f2105287d4b;p=scm%2Fbb%2Ftizen-distro.git bitbake: cooker: Rename confusing buildDepgraph task to handlePrefProviders (Bitbake rev: a25722175bf61f22961f45dbd356cb6d79864b35) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 308def0..2b55617 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -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