aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-26 18:02:21 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-26 18:04:19 +0000
commitf94d9be17d727b37dc655e7be272db2f290436aa (patch)
tree27f379ae5da541af6dd6aef5a30288c565c77398
parentcff11495cc376f080e06028655e4eb6c7f8a8094 (diff)
downloadopenembedded-core-contrib-f94d9be17d727b37dc655e7be272db2f290436aa.tar.gz
image: Don't create tasks with '.' in the name
Similarly to "-", "." doesn't work well in task names but is used in some real world image classes. Work around this with some replacements for now to unbreak layers. (Issues don't show themselves until runtime, e.g. with --dry-run) Tested-By: Otavio Salvador <otavio.salvador@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/image.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 387051654e..797f342521 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -395,9 +395,9 @@ python () {
after = 'do_image'
for dep in typedeps[t]:
- after += ' do_image_%s' % dep.replace("-", "_")
+ after += ' do_image_%s' % dep.replace("-", "_").replace(".", "_")
- t = t.replace("-", "_")
+ t = t.replace("-", "_").replace(".", "_")
d.setVar('do_image_%s' % t, '\n'.join(cmds))
d.setVarFlag('do_image_%s' % t, 'func', '1')