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