diff options
author | Richard Purdie <richard@openedhand.com> | 2007-10-12 07:51:50 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-10-12 07:51:50 +0000 |
commit | beb3a1be52a1d48e962261998f785df81de2f353 (patch) | |
tree | 4204727e2de932179d6667eed9915529be5c91e6 | |
parent | c09f9e8b051b676cf48787b1d9fbcab99ae04359 (diff) | |
download | poky-beb3a1be52a1d48e962261998f785df81de2f353.tar.gz |
bitbake: Fix taskdata whitespace splitting issues
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2871 311d38ba-8fff-0310-9ca6-ca027cbcb966
-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) |