diff options
author | Richard Purdie <richard@openedhand.com> | 2008-03-03 22:01:45 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-03-03 22:01:45 +0000 |
commit | ab191d21e2e5e1609206146d238af6ec0b3f0554 (patch) | |
tree | 728fa74dbf00f6b11964aa53b8427a0d221d6e91 /bitbake/lib/bb/utils.py | |
parent | e88b4753781d54dc2625c3260c611d30ad76dbed (diff) | |
download | openembedded-core-ab191d21e2e5e1609206146d238af6ec0b3f0554.tar.gz openembedded-core-ab191d21e2e5e1609206146d238af6ec0b3f0554.tar.bz2 openembedded-core-ab191d21e2e5e1609206146d238af6ec0b3f0554.zip |
bitbake: Update to bitbake 1.8 branch head
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3892 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index a2a5ff6cfd..9702c8c204 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py @@ -85,11 +85,11 @@ def explode_deps(s): for i in l: if i[0] == '(': flag = True - j = [] - if flag: - j.append(i) - else: + #j = [] + if not flag: r.append(i) + #else: + # j.append(i) if flag and i.endswith(')'): flag = False # Ignore version |