1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-09 15:50:16 +00:00

bitbake: Update to work without warnings with python 2.6

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2009-05-12 16:53:22 +01:00
committed by Marcin Juszkiewicz
parent f73dc1bf2a
commit d2c268aec8
5 changed files with 9 additions and 13 deletions
+1 -2
View File
@@ -31,7 +31,6 @@
import os, re
import bb.data
import bb.utils
from sets import Set
try:
import cPickle as pickle
@@ -431,6 +430,6 @@ class CacheData:
(set elsewhere)
"""
self.ignored_dependencies = []
self.world_target = Set()
self.world_target = set()
self.bbfile_priority = {}
self.bbfile_config_priorities = []