diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-12 16:53:22 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-12 16:53:22 +0100 |
commit | 81ff3a90f8f4ee0a00c439be9a1438de6c2ec168 (patch) | |
tree | 2bfed600f98fc2095ff7cfcf974e012627e826fc /bitbake/lib/bb/cache.py | |
parent | 22a4c4d02fa9a90903361780b0492c5d8e488af8 (diff) | |
download | poky-81ff3a90f8f4ee0a00c439be9a1438de6c2ec168.tar.gz |
bitbake: Update to work without warnings with python 2.6
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
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 = [] |