summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-03-25 17:28:34 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-03-25 17:28:52 +0000
commitfea0acdaf68430e6b34f97fdaac3d0c8fe13c872 (patch)
tree9d182740ec24ddd05d59ac38fdab8f141bf4dc28
parent69374497b557a5e99ffc7cbe5e075d63e2d9cfaa (diff)
downloadbitbake-fea0acdaf68430e6b34f97fdaac3d0c8fe13c872.tar.gz
cache.py: Bump the cache version after the BBVERSIONS update
(From Poky rev: fb245be03d8e3327165033045245f5f853c0b0d4) Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r--lib/bb/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 9a962ecc7..1f180012e 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -38,7 +38,7 @@ except ImportError:
import pickle
bb.msg.note(1, bb.msg.domain.Cache, "Importing cPickle failed. Falling back to a very slow implementation.")
-__cache_version__ = "130"
+__cache_version__ = "131"
class Cache:
"""