summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index b04a8bcecc..d0a4d18e0e 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -290,7 +290,7 @@ def dump_this_task(outfile, d):
290 290
291def clean_basepath(a): 291def clean_basepath(a):
292 if a.startswith("virtual:"): 292 if a.startswith("virtual:"):
293 b = a.rsplit(":", 1)[0] + a.rsplit("/", 1)[1] 293 b = a.rsplit(":", 1)[0] + ":" + a.rsplit("/", 1)[1]
294 else: 294 else:
295 b = a.rsplit("/", 1)[1] 295 b = a.rsplit("/", 1)[1]
296 return b 296 return b