diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-18 23:20:42 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-19 09:05:21 +0100 |
commit | 2970800a09eb440c73ba1ff88467d0292433e424 (patch) | |
tree | a974e0abad65647af85a09b16adc508124c45791 /bitbake | |
parent | 1fb330bea656617451509433ff93d426d02b8204 (diff) | |
download | poky-2970800a09eb440c73ba1ff88467d0292433e424.tar.gz |
bitbake: codeparser: Increase cache version after code parser dependency changes
(Bitbake rev: 4d880f1d5794f569b6eb5f6e7e3001dd671633c0)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index 2980510d41..70b0a8d136 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py | |||
@@ -117,7 +117,7 @@ class shellCacheLine(object): | |||
117 | 117 | ||
118 | class CodeParserCache(MultiProcessCache): | 118 | class CodeParserCache(MultiProcessCache): |
119 | cache_file_name = "bb_codeparser.dat" | 119 | cache_file_name = "bb_codeparser.dat" |
120 | CACHE_VERSION = 7 | 120 | CACHE_VERSION = 8 |
121 | 121 | ||
122 | def __init__(self): | 122 | def __init__(self): |
123 | MultiProcessCache.__init__(self) | 123 | MultiProcessCache.__init__(self) |