summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-04-12 23:21:43 +0000
committerNorbert Preining <preining@logic.at>2009-04-12 23:21:43 +0000
commita1fa4f5f735343787b7c55d25cb2dbd43287ff48 (patch)
treeea21aea3b454f08e9c17546c3b27f2b46d8cc6a3
parentd529c39c0b2119324dc706d1147e3d1a8f917aa8 (diff)
propagate fix for spaces in profile values
git-svn-id: svn://tug.org/texlive/branches/branch2009-dev@12707 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/install-tl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 6bc12779478..65724c7eb4f 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -1218,7 +1218,7 @@ 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) = split (" ", $_, 2); # value might have spaces
$pro{$k} = $v;
}
foreach (keys %vars) {