projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76360d5
)
Add * and ~* to the list of valid values for ACCEPT_KEYWORDS.
author
Zac Medico
<zmedico@gentoo.org>
Thu, 23 Aug 2007 20:28:37 +0000
(20:28 -0000)
committer
Zac 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
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 7b2fa539c13b5580d593082d44aaf30525f35352..a722d231c507f349b51e3e26497ec2d50d2a6acd 100644
(file)
--- 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)