From: Zac Medico Date: Fri, 8 Jun 2007 19:37:15 +0000 (-0000) Subject: Fix typo, split SPACE_SEPARATED variables on whitespace. (trunk r6738) X-Git-Tag: v2.1.2.10~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=87510cdd5f5e9b741b6b1efe29767bb858dd32e9;p=portage.git Fix typo, split SPACE_SEPARATED variables on whitespace. (trunk r6738) svn path=/main/branches/2.1.2/; revision=6759 --- diff --git a/pym/portage.py b/pym/portage.py index bbd5da93d..d52a6da57 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -595,7 +595,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)