summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2008-09-28 22:36:42 +0000
committerMarius Mauch <genone@gentoo.org>2008-09-28 22:36:42 +0000
commit7f08347a7d5b322a0c0c023b6be78abb8b26203f (patch)
treec97d9de8330d59fa54735810adb911bb04827c47
parent7f96f227fc8227bc9e0e11e70183ba5bc9049fa2 (diff)
downloadportage-7f08347a7d5b322a0c0c023b6be78abb8b26203f.tar.gz
portage-7f08347a7d5b322a0c0c023b6be78abb8b26203f.tar.bz2
portage-7f08347a7d5b322a0c0c023b6be78abb8b26203f.zip
make sure that cli-defined sets aren't added to @world
svn path=/main/trunk/; revision=11595
-rw-r--r--pym/portage/sets/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/sets/__init__.py b/pym/portage/sets/__init__.py
index 50ee455e6..d6b3b5e87 100644
--- a/pym/portage/sets/__init__.py
+++ b/pym/portage/sets/__init__.py
@@ -37,6 +37,7 @@ class SetConfig(SafeConfigParser):
self.errors = []
if not setname in self.psets:
options["name"] = setname
+ options["world-candidate"] = "False"
# for the unlikely case that there is already a section with the requested setname
import random