From: Zac Medico Date: Fri, 14 Oct 2011 05:13:03 +0000 (-0700) Subject: quickpkg: optimize */* matches X-Git-Tag: v2.2.0_alpha68~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=55dd7bc8587f4ef48a4ff6ddd4e176fbb72d118d;p=portage.git quickpkg: optimize */* matches --- diff --git a/bin/quickpkg b/bin/quickpkg index 69472248f..ced246888 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -198,6 +198,11 @@ def quickpkg_extended_atom(options, infos, atom, eout): atoms = [] for cpv in vardb.cpv_all(): cpv_atom = Atom("=%s" % cpv) + + if atom == "*/*": + atoms.append(cpv_atom) + continue + if not extended_cp_match(atom.cp, cpv_atom.cp): continue