Add * and ~* to the list of valid values for ACCEPT_KEYWORDS.
authorZac Medico <zmedico@gentoo.org>
Thu, 23 Aug 2007 20:28:37 +0000 (20:28 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 23 Aug 2007 20:28:37 +0000 (20:28 -0000)
svn path=/main/trunk/; revision=7688

pym/portage/__init__.py

index 7b2fa539c13b5580d593082d44aaf30525f35352..a722d231c507f349b51e3e26497ec2d50d2a6acd 100644 (file)
@@ -1579,7 +1579,7 @@ class config(object):
                        for group in groups:
                                if group not in archlist and \
                                        not (group.startswith("-") and group[1:] in archlist) and \
-                                       group != "**":
+                                       group not in ("*", "~*", "**"):
                                        writemsg("!!! INVALID ACCEPT_KEYWORDS: %s\n" % str(group),
                                                noiselevel=-1)