]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake/runqueue.py: Fix invalid variable reference fixing the -f option with setscen...
authorRichard Purdie <rpurdie@linux.intel.com>
Thu, 7 Oct 2010 14:45:02 +0000 (15:45 +0100)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 7 Oct 2010 14:45:02 +0000 (15:45 +0100)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/runqueue.py

index b5167126ee751b7de4098bfb044966875bdc830c..22b779436e00e6336787907835cb6f6c866c252e 100644 (file)
@@ -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