projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e1511a
)
Fix typo, split SPACE_SEPARATED variables on whitespace.
author
Zac Medico
<zmedico@gentoo.org>
Wed, 6 Jun 2007 00:59:49 +0000
(
00:59
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 6 Jun 2007 00:59:49 +0000
(
00:59
-0000)
svn path=/main/trunk/; revision=6738
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 89f4a1f4ef60c199cdd63a0ea1a38094578907a6..db268e5fd7d53eb0298883683b726d19783504f2 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-517,7
+517,7
@@
def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None):
mylist = []
for myconfig in config_list:
if var in myconfig:
- for item in myconfig[var].split(
":"
):
+ for item in myconfig[var].split():
if item and not item in mylist:
mylist.append(item)
del myconfig[var] # prepare for env.update(myconfig)