From: Zac Medico Date: Thu, 23 Aug 2007 20:29:10 +0000 (-0000) Subject: Add * and ~* to the list of valid values for ACCEPT_KEYWORDS. (trunk r7688) X-Git-Tag: v2.1.3.9~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ff6bb29eee85eecdfef7ac501d010fa1de33aa63;p=portage.git Add * and ~* to the list of valid values for ACCEPT_KEYWORDS. (trunk r7688) svn path=/main/branches/2.1.2/; revision=7689 --- diff --git a/pym/portage.py b/pym/portage.py index 4842294f7..7be9f72c7 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -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)