From: Zac Medico Date: Thu, 23 Aug 2007 20:28:37 +0000 (-0000) Subject: Add * and ~* to the list of valid values for ACCEPT_KEYWORDS. X-Git-Tag: v2.2_pre1~852 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b9d3aa9320455b26b746404cbfa0e4a1ac25ec0c;p=portage.git Add * and ~* to the list of valid values for ACCEPT_KEYWORDS. svn path=/main/trunk/; revision=7688 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 7b2fa539c..a722d231c 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -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)