diff options
| -rw-r--r-- | bitbake/lib/bb/siggen.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index c1685a9e46..40085b9c54 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
| @@ -351,9 +351,14 @@ def dump_this_task(outfile, d): | |||
| 351 | bb.parse.siggen.dump_sigtask(fn, task, outfile, "customfile:" + referencestamp) | 351 | bb.parse.siggen.dump_sigtask(fn, task, outfile, "customfile:" + referencestamp) |
| 352 | 352 | ||
| 353 | def clean_basepath(a): | 353 | def clean_basepath(a): |
| 354 | mc = None | ||
| 355 | if a.startswith("multiconfig:"): | ||
| 356 | _, mc, a = a.split(":", 2) | ||
| 354 | b = a.rsplit("/", 2)[1] + a.rsplit("/", 2)[2] | 357 | b = a.rsplit("/", 2)[1] + a.rsplit("/", 2)[2] |
| 355 | if a.startswith("virtual:"): | 358 | if a.startswith("virtual:"): |
| 356 | b = b + ":" + a.rsplit(":", 1)[0] | 359 | b = b + ":" + a.rsplit(":", 1)[0] |
| 360 | if mc: | ||
| 361 | b = b + ":multiconfig:" + mc | ||
| 357 | return b | 362 | return b |
| 358 | 363 | ||
| 359 | def clean_basepaths(a): | 364 | def clean_basepaths(a): |
