summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-22 20:43:20 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-22 20:43:20 +0000
commitc0b0466488102bc1fd066cf19f13873af3847972 (patch)
tree6fefabaa53a6c61cfdbd9e2042c6d3dcd73d4a79 /pym
parenta6e079cdd43f324bdb39ed7ffeefe1b7d44c4edd (diff)
downloadportage-c0b0466488102bc1fd066cf19f13873af3847972.tar.gz
portage-c0b0466488102bc1fd066cf19f13873af3847972.tar.bz2
portage-c0b0466488102bc1fd066cf19f13873af3847972.zip
Don't limit the size of USE in config.load_infodir.
svn path=/main/trunk/; revision=4802
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 94de3fc02..616df7e7b 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1495,7 +1495,7 @@ class config:
if myre.match(filename):
try:
mydata = string.strip(open(infodir+"/"+filename).read())
- if len(mydata)<2048:
+ if len(mydata) < 2048 or filename == "USE":
if filename == "USE":
binpkg_flags = "-* " + mydata
self.configdict["pkg"][filename] = binpkg_flags