diff options
Diffstat (limited to 'meta/lib/oe/package_manager.py')
-rw-r--r-- | meta/lib/oe/package_manager.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index abe9f6878b..54e6970298 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -643,8 +643,8 @@ class PackageManager(object): | |||
643 | def construct_uris(self, uris, base_paths): | 643 | def construct_uris(self, uris, base_paths): |
644 | def _append(arr1, arr2, sep='/'): | 644 | def _append(arr1, arr2, sep='/'): |
645 | res = [] | 645 | res = [] |
646 | narr1 = map(lambda a: string.rstrip(a, sep), arr1) | 646 | narr1 = [string.rstrip(a, sep) for a in arr1] |
647 | narr2 = map(lambda a: string.lstrip(string.rstrip(a, sep), sep), arr2) | 647 | narr2 = [string.lstrip(string.rstrip(a, sep), sep) for a in arr2] |
648 | for a1 in narr1: | 648 | for a1 in narr1: |
649 | if arr2: | 649 | if arr2: |
650 | for a2 in narr2: | 650 | for a2 in narr2: |
@@ -1111,7 +1111,7 @@ class RpmPM(PackageManager): | |||
1111 | sub_rdep = sub_data.get("RDEPENDS_" + pkg) | 1111 | sub_rdep = sub_data.get("RDEPENDS_" + pkg) |
1112 | if not sub_rdep: | 1112 | if not sub_rdep: |
1113 | continue | 1113 | continue |
1114 | done = bb.utils.explode_dep_versions2(sub_rdep).keys() | 1114 | done = list(bb.utils.explode_dep_versions2(sub_rdep).keys()) |
1115 | next = done | 1115 | next = done |
1116 | # Find all the rdepends on dependency chain | 1116 | # Find all the rdepends on dependency chain |
1117 | while next: | 1117 | while next: |