From 6e02c340bfea4b9616058a6c17c0d7d213968716 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: 693eec8edf8d3b2b01c53be6776213cccd797485) Signed-off-by: Richard Purdie (cherry picked from commit 87c9e120897ed04dfc64d4752fc602f9bfcb8645) Signed-off-by: Anuj Mittal Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/bb') diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 3300bb4f98..cd10da8b3a 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