diff options
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
| -rw-r--r-- | bitbake/lib/bb/data_smart.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 63a32bc6a7..b2dc9d9fd5 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
| @@ -338,11 +338,12 @@ class VariableHistory(object): | |||
| 338 | lines.append(line) | 338 | lines.append(line) |
| 339 | return lines | 339 | return lines |
| 340 | 340 | ||
| 341 | def get_variable_items_files(self, var, d): | 341 | def get_variable_items_files(self, var): |
| 342 | """ | 342 | """ |
| 343 | Use variable history to map items added to a list variable and | 343 | Use variable history to map items added to a list variable and |
| 344 | the files in which they were added. | 344 | the files in which they were added. |
| 345 | """ | 345 | """ |
| 346 | d = self.dataroot | ||
| 346 | history = self.variable(var) | 347 | history = self.variable(var) |
| 347 | finalitems = (d.getVar(var) or '').split() | 348 | finalitems = (d.getVar(var) or '').split() |
| 348 | filemap = {} | 349 | filemap = {} |
