From: Richard Purdie Date: Thu, 7 Oct 2010 14:45:02 +0000 (+0100) Subject: bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscen... X-Git-Tag: 2011-1~4345 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bee7c21f6e598d5859e1c45017c9673798af3450;p=openembedded-core.git bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscene tasks Signed-off-by: Richard Purdie --- 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