From bee7c21f6e598d5859e1c45017c9673798af3450 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 7 Oct 2010 15:45:02 +0100 Subject: bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscene tasks Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index b5167126ee..22b779436e 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -1428,7 +1428,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): return True if self.cooker.configuration.force: - for target in self.target_pairs: + for target in self.rqdata.target_pairs: if target[0] == fn and target[1] == self.rqdata.runq_task[realtask]: self.task_failoutright(task) return True -- cgit v1.2.3-54-g00ecf