diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 020ad210d8..48788f4aa6 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -2001,12 +2001,12 @@ class RunQueueExecute: | |||
2001 | # Allow the next deferred task to run. Any other deferred tasks should be deferred after that task. | 2001 | # Allow the next deferred task to run. Any other deferred tasks should be deferred after that task. |
2002 | # We shouldn't allow all to run at once as it is prone to races. | 2002 | # We shouldn't allow all to run at once as it is prone to races. |
2003 | if not found: | 2003 | if not found: |
2004 | bb.note("Deferred task %s now buildable" % t) | 2004 | bb.debug(1, "Deferred task %s now buildable" % t) |
2005 | del self.sq_deferred[t] | 2005 | del self.sq_deferred[t] |
2006 | update_scenequeue_data([t], self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=False) | 2006 | update_scenequeue_data([t], self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=False) |
2007 | found = t | 2007 | found = t |
2008 | else: | 2008 | else: |
2009 | bb.note("Deferring %s after %s" % (t, found)) | 2009 | bb.debug(1, "Deferring %s after %s" % (t, found)) |
2010 | self.sq_deferred[t] = found | 2010 | self.sq_deferred[t] = found |
2011 | 2011 | ||
2012 | def task_complete(self, task): | 2012 | def task_complete(self, task): |
@@ -2944,7 +2944,7 @@ def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq): | |||
2944 | sqdata.hashes[h] = tid | 2944 | sqdata.hashes[h] = tid |
2945 | else: | 2945 | else: |
2946 | sqrq.sq_deferred[tid] = sqdata.hashes[h] | 2946 | sqrq.sq_deferred[tid] = sqdata.hashes[h] |
2947 | bb.note("Deferring %s after %s" % (tid, sqdata.hashes[h])) | 2947 | bb.debug(1, "Deferring %s after %s" % (tid, sqdata.hashes[h])) |
2948 | 2948 | ||
2949 | update_scenequeue_data(sqdata.sq_revdeps, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True) | 2949 | update_scenequeue_data(sqdata.sq_revdeps, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True) |
2950 | 2950 | ||