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 /bitbake/lib/bb | |
parent | 240b6636f9619a265ab06fa4d0f61c89b3c324c8 (diff) | |
download | openembedded-core-bee7c21f6e598d5859e1c45017c9673798af3450.tar.gz openembedded-core-bee7c21f6e598d5859e1c45017c9673798af3450.tar.bz2 openembedded-core-bee7c21f6e598d5859e1c45017c9673798af3450.zip |
bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscene tasks
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb')
-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): 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 |