diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-07 15:45:02 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-07 15:45:02 +0100 |
commit | bee7c21f6e598d5859e1c45017c9673798af3450 (patch) | |
tree | 27d213c726a4a002dab627f69d6cee7a55f30192 | |
parent | 240b6636f9619a265ab06fa4d0f61c89b3c324c8 (diff) | |
download | poky-bee7c21f6e598d5859e1c45017c9673798af3450.tar.gz |
bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscene tasks
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
1428 | return True | 1428 | return True |
1429 | 1429 | ||
1430 | if self.cooker.configuration.force: | 1430 | if self.cooker.configuration.force: |
1431 | for target in self.target_pairs: | 1431 | for target in self.rqdata.target_pairs: |
1432 | if target[0] == fn and target[1] == self.rqdata.runq_task[realtask]: | 1432 | if target[0] == fn and target[1] == self.rqdata.runq_task[realtask]: |
1433 | self.task_failoutright(task) | 1433 | self.task_failoutright(task) |
1434 | return True | 1434 | return True |