summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-10-13 08:14:18 -0700
committerZac Medico <zmedico@gentoo.org>2011-10-13 08:14:18 -0700
commit2ae07610ad187de2182fe0a36611042104f66511 (patch)
treeb896f012dab4e271e1da3f0dfd2f1b674f58ff73
parenta580aee32bec544889e08a76b4d0f308447f8d89 (diff)
downloadportage-2ae07610ad187de2182fe0a36611042104f66511.tar.gz
portage-2ae07610ad187de2182fe0a36611042104f66511.tar.bz2
portage-2ae07610ad187de2182fe0a36611042104f66511.zip
quickpkg_extended_atom: handle =* operator
-rwxr-xr-xbin/quickpkg5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/quickpkg b/bin/quickpkg
index c95a58423..0982c4a80 100755
--- a/bin/quickpkg
+++ b/bin/quickpkg
@@ -201,6 +201,11 @@ def quickpkg_extended_atom(options, infos, arg, eout):
infos["missing"].append(arg)
return
+ if not atom.extended_syntax:
+ # =* operator
+ quickpkg_atom(options, infos, atom, eout)
+ return
+
require_metadata = atom.slot or atom.repo
atoms = []
for cpv in vardb.cpv_all():