diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/sstate.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 4bc80b6078..957762db5c 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -20,7 +20,7 @@ def generate_sstatefn(spec, hash, taskname, siginfo, d): | |||
20 | components = spec.split(":") | 20 | components = spec.split(":") |
21 | # Fields 0,5,6 are mandatory, 1 is most useful, 2,3,4 are just for information | 21 | # Fields 0,5,6 are mandatory, 1 is most useful, 2,3,4 are just for information |
22 | # 7 is for the separators | 22 | # 7 is for the separators |
23 | avail = (254 - len(hash + "_" + taskname + extension) - len(components[0]) - len(components[1]) - len(components[5]) - len(components[6]) - 7) // 3 | 23 | avail = (limit - len(hash + "_" + taskname + extension) - len(components[0]) - len(components[1]) - len(components[5]) - len(components[6]) - 7) // 3 |
24 | components[2] = components[2][:avail] | 24 | components[2] = components[2][:avail] |
25 | components[3] = components[3][:avail] | 25 | components[3] = components[3][:avail] |
26 | components[4] = components[4][:avail] | 26 | components[4] = components[4][:avail] |