diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/taskdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/taskdata.py b/bitbake/lib/bb/taskdata.py index edbc86042c..ee1a7232dd 100644 --- a/bitbake/lib/bb/taskdata.py +++ b/bitbake/lib/bb/taskdata.py | |||
@@ -175,7 +175,7 @@ class TaskData: | |||
175 | for dep in task_deps['depends'][task].split(): | 175 | for dep in task_deps['depends'][task].split(): |
176 | if dep: | 176 | if dep: |
177 | if ":" not in dep: | 177 | if ":" not in dep: |
178 | bb.msg.fatal("TaskData", "Error, dependency %s does not contain ':' character\n. Task 'depends' should be specified in the form 'packagename:task'" % (dep, fn)) | 178 | 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)) |
179 | ids.append(((self.getbuild_id(dep.split(":")[0])), dep.split(":")[1])) | 179 | ids.append(((self.getbuild_id(dep.split(":")[0])), dep.split(":")[1])) |
180 | self.tasks_idepends[taskid].extend(ids) | 180 | self.tasks_idepends[taskid].extend(ids) |
181 | 181 | ||