]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commit
perforce.py: fix the perforce fetcher
authorRobert Yang <liezhi.yang@windriver.com>
Mon, 4 Feb 2013 03:19:36 +0000 (03:19 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 25 Feb 2013 13:57:42 +0000 (05:57 -0800)
commitb7440fb36b419996046f607e66434ce34722272b
tree18253677d5a6f90d698e04ffd44290c61b908b64
parente6db0ee31178d4386802e720d75303ec7dc21519
perforce.py: fix the perforce fetcher

The bb.process.run() will return one tuple, e.g:

p4file = ('strA\nStrB\nstrC\n'), then there will be an iteration on p4file:

for i in p4file:
[snip]

The i will be 's t r A ...', this is incorrect. use splitlines() to fix
the problem.

[YOCTO #3619]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/fetch2/perforce.py