diff options
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r-- | bitbake/lib/bb/cache.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index 1001012e0c..272619386a 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -31,7 +31,6 @@ | |||
31 | import os, re | 31 | import os, re |
32 | import bb.data | 32 | import bb.data |
33 | import bb.utils | 33 | import bb.utils |
34 | from sets import Set | ||
35 | 34 | ||
36 | try: | 35 | try: |
37 | import cPickle as pickle | 36 | import cPickle as pickle |
@@ -525,6 +524,6 @@ class CacheData: | |||
525 | (set elsewhere) | 524 | (set elsewhere) |
526 | """ | 525 | """ |
527 | self.ignored_dependencies = [] | 526 | self.ignored_dependencies = [] |
528 | self.world_target = Set() | 527 | self.world_target = set() |
529 | self.bbfile_priority = {} | 528 | self.bbfile_priority = {} |
530 | self.bbfile_config_priorities = [] | 529 | self.bbfile_config_priorities = [] |