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

pym/portage.py

index 4842294f7037a638a40ddf66f0e6f2aa5f8f7714..7be9f72c7afb7a8451dab7ba51b928a0fcd09757 100644 (file)
@@ -1598,7 +1598,7 @@ class config:
                        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)