summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 7d7e66ebd2..82efada67d 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -31,7 +31,6 @@
31import os, re 31import os, re
32import bb.data 32import bb.data
33import bb.utils 33import bb.utils
34from sets import Set
35 34
36try: 35try:
37 import cPickle as pickle 36 import cPickle as pickle
@@ -431,6 +430,6 @@ class CacheData:
431 (set elsewhere) 430 (set elsewhere)
432 """ 431 """
433 self.ignored_dependencies = [] 432 self.ignored_dependencies = []
434 self.world_target = Set() 433 self.world_target = set()
435 self.bbfile_priority = {} 434 self.bbfile_priority = {}
436 self.bbfile_config_priorities = [] 435 self.bbfile_config_priorities = []