From f847e1b3c4397367a55222e6ef2a589a758cc863 Mon Sep 17 00:00:00 2001 From: Jurij Smakov Date: Sat, 22 Aug 2009 19:54:08 +0100 Subject: [PATCH] Return all packages solving a dep through virtual packages (like b1 does), not just the first one. This eliminates some b1/b2 excuse diffs. Signed-off-by: Jurij Smakov --- britney.py | 1 - 1 file changed, 1 deletion(-) diff --git a/britney.py b/britney.py index 4bf6814..9cafc90 100755 --- a/britney.py +++ b/britney.py @@ -923,7 +923,6 @@ class Britney: # does it and we have to go with it, but at least a warning should be raised. if op == '' and version == '' or not strict and apt_pkg.CheckDep(package[VERSION], op, version): packages.append(prov) - break return (len(packages) > 0, packages)