diff options
-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 6e4eb09f8e..8182010047 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
@@ -22,7 +22,7 @@ def generate_sstatefn(spec, hash, taskname, siginfo, d): | |||
22 | components = spec.split(":") | 22 | components = spec.split(":") |
23 | # Fields 0,5,6 are mandatory, 1 is most useful, 2,3,4 are just for information | 23 | # Fields 0,5,6 are mandatory, 1 is most useful, 2,3,4 are just for information |
24 | # 7 is for the separators | 24 | # 7 is for the separators |
25 | avail = (254 - len(hash + "_" + taskname + extension) - len(components[0]) - len(components[1]) - len(components[5]) - len(components[6]) - 7) // 3 | 25 | avail = (limit - len(hash + "_" + taskname + extension) - len(components[0]) - len(components[1]) - len(components[5]) - len(components[6]) - 7) // 3 |
26 | components[2] = components[2][:avail] | 26 | components[2] = components[2][:avail] |
27 | components[3] = components[3][:avail] | 27 | components[3] = components[3][:avail] |
28 | components[4] = components[4][:avail] | 28 | components[4] = components[4][:avail] |