Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 145530 | Differences between
and this patch

Collapse All | Expand All

(-)pym/portage_util.py.orig (-1 / +5 lines)
Lines 4-10 Link Here
4
4
5
from portage_exception import PortageException, FileNotFound, OperationNotPermitted, ReadOnlyFileSystem
5
from portage_exception import PortageException, FileNotFound, OperationNotPermitted, ReadOnlyFileSystem
6
6
7
import sys,string,shlex,os,errno
7
import sys,string,shlex,os,errno,glob
8
try:
8
try:
9
	import cPickle
9
	import cPickle
10
except ImportError:
10
except ImportError:
Lines 224-229 Link Here
224
		lex.quotes="\"'"
224
		lex.quotes="\"'"
225
		if allow_sourcing:
225
		if allow_sourcing:
226
			lex.source="source"
226
			lex.source="source"
227
			dfiles=glob.glob(mycfg + ".d/*.conf")
228
			for conffile in dfiles:
229
				f2=open(conffile,"r")
230
				lex.push_source(f2)
227
		while 1:
231
		while 1:
228
			key=lex.get_token()
232
			key=lex.get_token()
229
			if (key==''):
233
			if (key==''):

Return to bug 145530