From patchwork Wed Jul 25 21:11:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] runqueue.py: Wipe out the stamp cache between setscene and main task execution Date: Wed, 25 Jul 2012 21:11:48 -0000 From: Richard Purdie X-Patchwork-Id: 33079 Message-Id: <1343250708.29991.2.camel@ted> To: bitbake-devel The stamp files can change during setscene and the cache should be cleared to account for this. Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index ca5fe97..d3a1d2d 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1170,6 +1170,8 @@ class RunQueueExecuteTasks(RunQueueExecute): self.stats = RunQueueStats(len(self.rqdata.runq_fnid)) + self.stampcache = {} + # Mark initial buildable tasks for task in xrange(self.stats.total): self.runq_running.append(0)