The calculated dependencies were not considered for rev_dep checks. This was an old bug.

This should fix the bug but careful testing needed.

BUG:COMMENT:11406
This commit is contained in:
Faik Uygur
2009-12-03 14:32:10 +00:00
parent 1d4a3b9beb
commit b1d8132048
+1 -1
View File
@@ -207,7 +207,7 @@ def plan_upgrade(A):
B = Bp
# now, search reverse dependencies to see if anything
# should be upgraded
B = A
B = filter(lambda x:installdb.has_package(x), G_f.vertices())
while len(B) > 0:
Bp = set()
for x in B: