summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChristopher Larson <kergoth@gmail.com>2011-09-14 10:43:48 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-20 22:22:21 +0100
commit2a09a93cbac9c5aca25236c669e4869b84928be2 (patch)
tree3aafa353cd12978d03a8039a15e20a5f5d2409e9 /bitbake
parent7a0cbe6b0e5185aebabedc515b427994bc2a15dc (diff)
downloadast2050-yocto-poky-2a09a93cbac9c5aca25236c669e4869b84928be2.zip
ast2050-yocto-poky-2a09a93cbac9c5aca25236c669e4869b84928be2.tar.gz
taskdata: fix string formatting of an error message
(Bitbake rev: 224db31c46f5e91ced0e509c5fc564baaffa7b27) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/taskdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py
index edbc860..ee1a723 100644
--- a/bitbake/lib/bb/taskdata.py
+++ b/bitbake/lib/bb/taskdata.py
@@ -175,7 +175,7 @@ class TaskData:
for dep in task_deps['depends'][task].split():
if dep:
if ":" not in dep:
- bb.msg.fatal("TaskData", "Error, dependency %s does not contain ':' character\n. Task 'depends' should be specified in the form 'packagename:task'" % (dep, fn))
+ bb.msg.fatal("TaskData", "Error for %s, dependency %s does not contain ':' character\n. Task 'depends' should be specified in the form 'packagename:task'" % (fn, dep))
ids.append(((self.getbuild_id(dep.split(":")[0])), dep.split(":")[1]))
self.tasks_idepends[taskid].extend(ids)
OpenPOWER on IntegriCloud