summaryrefslogtreecommitdiffstats
path: root/bitbake-dev/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake-dev/lib/bb/cooker.py')
-rw-r--r--bitbake-dev/lib/bb/cooker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake-dev/lib/bb/cooker.py b/bitbake-dev/lib/bb/cooker.py
index 01537ab2f7..5e3cccbdb6 100644
--- a/bitbake-dev/lib/bb/cooker.py
+++ b/bitbake-dev/lib/bb/cooker.py
@@ -195,7 +195,7 @@ class BBCooker:
195 bb.msg.error(bb.msg.domain.Build, "%s event exception, aborting" % bb.event.getName(event)) 195 bb.msg.error(bb.msg.domain.Build, "%s event exception, aborting" % bb.event.getName(event))
196 raise 196 raise
197 197
198 def tryBuild(self, fn): 198 def tryBuild(self, fn, task):
199 """ 199 """
200 Build a provider and its dependencies. 200 Build a provider and its dependencies.
201 build_depends is a list of previous build dependencies (not runtime) 201 build_depends is a list of previous build dependencies (not runtime)
@@ -209,7 +209,7 @@ class BBCooker:
209 #if bb.build.stamp_is_current('do_%s' % self.configuration.cmd, the_data): 209 #if bb.build.stamp_is_current('do_%s' % self.configuration.cmd, the_data):
210 # return True 210 # return True
211 211
212 return self.tryBuildPackage(fn, item, self.configuration.cmd, the_data) 212 return self.tryBuildPackage(fn, item, task, the_data)
213 213
214 def showVersions(self): 214 def showVersions(self):
215 215