summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorJason Stubbs <jstubbs@gentoo.org>2005-12-25 10:49:40 +0000
committerJason Stubbs <jstubbs@gentoo.org>2005-12-25 10:49:40 +0000
commit4c195aad5572ccd11d585f9768834344acc9f908 (patch)
tree910a56608e52a42b1d29049057a628db8f721079 /pym/portage.py
parent4a666b4e9bf3978ddcf64efe6f0829bfb276bf24 (diff)
downloadportage-4c195aad5572ccd11d585f9768834344acc9f908.tar.gz
portage-4c195aad5572ccd11d585f9768834344acc9f908.tar.bz2
portage-4c195aad5572ccd11d585f9768834344acc9f908.zip
Remove the now unnecessary USE="*" hack.
svn path=/main/trunk/; revision=2469
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 24d1ded55..9129aa494 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3292,10 +3292,7 @@ def dep_check(depstring,mydbapi,mysettings,use="yes",mode=None,myuse=None,use_ca
#check_config_instance(mysettings)
- if use=="all":
- #enable everything (for repoman)
- myusesplit=["*"]
- elif use=="yes":
+ if use=="yes":
if myuse==None:
#default behavior
myusesplit = string.split(mysettings["USE"])