summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-07 18:10:36 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-12 13:15:12 +0100
commitad8bf10d873abb94d987860a3f6d06b134fb8a99 (patch)
treed1ce642eaf985ac6e7658b2477ac6d9b08822b5b /lib/bb/cache.py
parent063ee01935767ac4c9518d7477c8c85da1c9969a (diff)
downloadopenembedded-core-contrib-ad8bf10d873abb94d987860a3f6d06b134fb8a99.tar.gz
fetch2: Fix AUTOINC handling
AUTOINC was meant to appear once at the start of the version string. The list of names may not be sorted meaning it could get inserted in the middle. This patch simplifies the code and ensures it appears at the start. Include cache version bump to ensure the cache picks up these changes. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-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 eee83b7d09..fb0f40c602 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__ = "145"
+__cache_version__ = "146"
def getCacheFile(path, filename, data_hash):
return os.path.join(path, filename + "." + data_hash)