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

Collapse All | Expand All

(-)pym/portage.py (-3 / +3 lines)
Lines 2568-2576 Link Here
2568
						"${URI}":loc, "${FILE}":myfile}
2568
						"${URI}":loc, "${FILE}":myfile}
2569
					for i in xrange(len(myfetch)):
2569
					for i in xrange(len(myfetch)):
2570
						token = myfetch[i].strip("\"'")
2570
						token = myfetch[i].strip("\"'")
2571
						value = variables.get(token)
2571
						for var, value in variables.iteritems():
2572
						if value is not None:
2572
							token = token.replace(var, value)
2573
							myfetch[i] = value
2573
						myfetch[i] = token
2574
2574
2575
					spawn_keywords = {}
2575
					spawn_keywords = {}
2576
					if "userfetch" in mysettings.features and \
2576
					if "userfetch" in mysettings.features and \

Return to bug 175058