summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-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 933311cccb..548f50dfcf 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -295,7 +295,7 @@ def dump_this_task(outfile, d):
295 295
296def clean_basepath(a): 296def clean_basepath(a):
297 if a.startswith("virtual:"): 297 if a.startswith("virtual:"):
298 b = a.rsplit(":", 1)[0] + ":" + a.rsplit("/", 1)[1] 298 b = a.rsplit("/", 1)[1] + ":" + a.rsplit(":", 1)[0]
299 else: 299 else:
300 b = a.rsplit("/", 1)[1] 300 b = a.rsplit("/", 1)[1]
301 return b 301 return b