From: Richard Purdie Date: Wed, 25 Jul 2012 19:03:44 +0000 (+0000) Subject: bitbake: runqueue.py: Wipe out the stamp cache between setscene and main task execution X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c74f3d44c6f7815fad87736763807c96263c2eed;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index ca5fe970d29..d3a1d2d4f78 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)