diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/install-tl b/Master/install-tl index 45c09317d64..333c75cba51 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -875,6 +875,7 @@ sub read_profile { while (<PROFILE>) { next if m/^[[:space:]]*$/; # skip empty lines next if m/^[[:space:]]*#/; # skip comment lines + chomp; # remove eol my ($k,$v) = split (" ", $_, 2); # value might have spaces $pro{$k} = $v; } |