summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-08-27 21:44:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-07 12:10:44 +0100
commit19d0abe14cd6590dc7a9d81f88c18833e1b35a1b (patch)
treee1a7ec334f9145d04ca61e325d9ce87e99f22b48 /bitbake
parentb7bd852db1495e4263319ee4ce1a927c9c49368b (diff)
downloadpoky-19d0abe14cd6590dc7a9d81f88c18833e1b35a1b.tar.gz
bitbake: lib/bb/siggen.py: insert a colon between class and recipe name
before: virtual:nativeautomake_1.12.1.bb.do_compile after: virtual:native:automake_1.12.1.bb.do_compile This separation ensures that the key is readable, and if necessary, parsable. Unfortunately this invalidates previous native sstate signatures with OE-Core - not much that can be done about that; however that occurs frequently during the development cycle so it's par for the course. (Bitbake rev: 5b96c32dad256090e9bda5af0f80c7dbcc90bde8) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 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