diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-22 20:43:20 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-22 20:43:20 +0000 |
commit | c0b0466488102bc1fd066cf19f13873af3847972 (patch) | |
tree | 6fefabaa53a6c61cfdbd9e2042c6d3dcd73d4a79 | |
parent | a6e079cdd43f324bdb39ed7ffeefe1b7d44c4edd (diff) | |
download | portage-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
-rw-r--r-- | pym/portage.py | 2 |
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 |