diff options
-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 902cc140ef..5b2418f665 100644 --- a/bitbake/lib/bb/taskdata.py +++ b/bitbake/lib/bb/taskdata.py | |||
@@ -149,7 +149,7 @@ class TaskData: | |||
149 | # Touch all intertask dependencies | 149 | # Touch all intertask dependencies |
150 | if 'depends' in task_deps and task in task_deps['depends']: | 150 | if 'depends' in task_deps and task in task_deps['depends']: |
151 | ids = [] | 151 | ids = [] |
152 | for dep in task_deps['depends'][task].split(" "): | 152 | for dep in task_deps['depends'][task].split(): |
153 | if dep: | 153 | if dep: |
154 | ids.append(str(self.getbuild_id(dep.split(":")[0])) + ":" + dep.split(":")[1]) | 154 | ids.append(str(self.getbuild_id(dep.split(":")[0])) + ":" + dep.split(":")[1]) |
155 | self.tasks_idepends[taskid].extend(ids) | 155 | self.tasks_idepends[taskid].extend(ids) |