From c74f3d44c6f7815fad87736763807c96263c2eed Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 25 Jul 2012 19:03:44 +0000 Subject: bitbake: runqueue.py: Wipe out the stamp cache between setscene and main task execution The stamp files can change during setscene and the cache should be cleared to account for this. (Bitbake rev: 5ec12f586a50fce675b268965b3dc487aaa96c43) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index ca5fe970d2..d3a1d2d4f7 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) -- cgit v1.2.3-54-g00ecf