summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@mvista.com>2009-07-17 15:26:45 -0700
committerChris Larson <clarson@kergoth.com>2009-07-18 23:09:35 -0700
commit242a23b7bbc9e73d5e501ee65b232d0ae1f6b1ed (patch)
tree8137872fd4cae424741abe3eaef251673250c513
parent2e05e02ddcd87abf061a0478642d0ac95098c7bd (diff)
downloadbitbake-242a23b7bbc9e73d5e501ee65b232d0ae1f6b1ed.tar.gz
taskdata: fix a possible infinite loop when multiple eligible providers aren't buildable
The code which removes providers which aren't buildable from the eligible list modifies the list while iterating it, resulting in skipping some entries. If the list contained two failed providers in sequence, it left the second behind in the eligible list. Fixed by replacing the block with a list comprehension that constructs a new eligible list without the failed entries. Signed-off-by: Chris Larson <clarson@mvista.com>
-rw-r--r--lib/bb/taskdata.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/bb/taskdata.py b/lib/bb/taskdata.py
index 64ab032c3..45f6902dd 100644
--- a/lib/bb/taskdata.py
+++ b/lib/bb/taskdata.py
@@ -374,11 +374,7 @@ class TaskData:
all_p = dataCache.providers[item]
eligible, foundUnique = bb.providers.filterProviders(all_p, item, cfgData, dataCache)
-
- for p in eligible:
- fnid = self.getfn_id(p)
- if fnid in self.failed_fnids:
- eligible.remove(p)
+ eligible = [p for p in eligible if not self.getfn_id(p) in self.failed_fnids]
if not eligible:
bb.msg.note(2, bb.msg.domain.Provider, "No buildable provider PROVIDES '%s' but '%s' DEPENDS on or otherwise requires it. Enable debugging and see earlier logs to find unbuildable providers." % (item, self.get_dependees_str(item)))
@@ -426,11 +422,7 @@ class TaskData:
raise bb.providers.NoRProvider(item)
eligible, numberPreferred = bb.providers.filterProvidersRunTime(all_p, item, cfgData, dataCache)
-
- for p in eligible:
- fnid = self.getfn_id(p)
- if fnid in self.failed_fnids:
- eligible.remove(p)
+ eligible = [p for p in eligible if not self.getfn_id(p) in self.failed_fnids]
if not eligible:
bb.msg.error(bb.msg.domain.Provider, "'%s' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity '%s' but it wasn't found in any PACKAGE or RPROVIDES variables of any buildable targets.\nEnable debugging and see earlier logs to find unbuildable targets." % (self.get_rdependees_str(item), item))