projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5cae35
)
Use config.environ() instead of config.items() when spawning FETCHCOMMAND.
author
Zac Medico
<zmedico@gentoo.org>
Mon, 15 Feb 2010 06:39:58 +0000
(06:39 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Mon, 15 Feb 2010 06:39:58 +0000
(06:39 -0000)
svn path=/main/trunk/; revision=15355
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 2c2307bb6dfd2a24f588d2f027d2e656c422d7d2..bd32e7f3ed51e6e0ef64a59bb8dd4eb0ddd91d39 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-4249,7
+4249,7
@@
def _spawn_fetch(settings, args, **kwargs):
if args[0] != BASH_BINARY:
args = [BASH_BINARY, "-c", "exec \"$@\"", args[0]] + args
- rval = spawn_func(args, env=
dict(iter(settings.items())
), **kwargs)
+ rval = spawn_func(args, env=
settings.environ(
), **kwargs)
return rval