aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-18 23:20:21 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-18 23:21:07 +0100
commit6df0425a9d5c4c520eb7845d8f6175d9641779a7 (patch)
treef28780fc5ad06c5a0910da340472d09bec41ec02
parent4506ccf1495c6ed6e8ed678f4baa166bc94d1761 (diff)
downloadbitbake-contrib-6df0425a9d5c4c520eb7845d8f6175d9641779a7.tar.gz
cache: Increase cache version after task checksum calculation changes
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 742fe55cf..393d54174 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -43,7 +43,7 @@ except ImportError:
logger.info("Importing cPickle failed. "
"Falling back to a very slow implementation.")
-__cache_version__ = "149"
+__cache_version__ = "150"
def getCacheFile(path, filename, data_hash):
return os.path.join(path, filename + "." + data_hash)