diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2009-04-11 18:24:24 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2009-04-11 18:24:24 +0000 |
commit | 1529f87a95ca5a6c3cb89073570032acb7433d54 (patch) | |
tree | e0d60b472b02c296c96501b774b45746f17f825f /Master/install-tl | |
parent | 98b184e2dc411b93640d10c67925adc4f84c367f (diff) |
install-tl (read_profile): Bug reported by Andreas Hirsch and Stephan Lukasczyk.
git-svn-id: svn://tug.org/texlive/trunk@12694 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 1f972bcd608..e841a3deb3a 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -875,7 +875,8 @@ sub read_profile { while (<PROFILE>) { next if m/^[[:space:]]*$/; # skip empty lines next if m/^[[:space:]]*#/; # skip comment lines - my ($k,$v) = split; + my ($k,$v); + ($k,$v) = /(.*?)\s+(.*)/; # The *first* space is delimiter. $pro{$k} = $v; } foreach (keys %vars) { |