From 28937721ab04968e689aec26a92a2317dd2d5828 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 8 Nov 2021 16:26:04 +0000 Subject: bitbake: runqueue: Fix runall option handling The previous fix for runall option handling had a small bug in it, it didn't clear the originally processed task list which meant it was running too many tasks. Fix this so the list is reset and rebuild correctly. (Bitbake rev: 87c9e120897ed04dfc64d4752fc602f9bfcb8645) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 7d4cbed775..957c2d1806 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -933,6 +933,7 @@ class RunQueueData: for tid in list(self.runtaskentries.keys()): if tid not in runq_build: reduced_tasklist.remove(tid) + runq_build = {} for task in self.cooker.configuration.runall: if not task.startswith("do_"): -- cgit v1.2.3-54-g00ecf