bitbake: Fix taskdata whitespace splitting issues

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2871 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-10-12 07:51:50 +00:00
parent c09f9e8b05
commit beb3a1be52
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class TaskData:
# Touch all intertask dependencies
if 'depends' in task_deps and task in task_deps['depends']:
ids = []
for dep in task_deps['depends'][task].split(" "):
for dep in task_deps['depends'][task].split():
if dep:
ids.append(str(self.getbuild_id(dep.split(":")[0])) + ":" + dep.split(":")[1])
self.tasks_idepends[taskid].extend(ids)