From: Richard Purdie Date: Wed, 18 May 2016 22:20:21 +0000 (+0100) Subject: cache: Increase cache version after task checksum calculation changes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6df0425a9d5c4c520eb7845d8f6175d9641779a7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git cache: Increase cache version after task checksum calculation changes Signed-off-by: Richard Purdie --- diff --git a/lib/bb/cache.py b/lib/bb/cache.py index 742fe55cfe0..393d541744a 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)