From: Zac Medico Date: Sun, 22 Oct 2006 20:43:20 +0000 (-0000) Subject: Don't limit the size of USE in config.load_infodir. X-Git-Tag: v2.1.2~564 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c0b0466488102bc1fd066cf19f13873af3847972;p=portage.git Don't limit the size of USE in config.load_infodir. svn path=/main/trunk/; revision=4802 --- 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