summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {