diff options
author | Karl Berry <karl@freefriends.org> | 2019-03-31 15:30:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-03-31 15:30:16 +0000 |
commit | 4efd86182950597e30c5ac323b9851246685f478 (patch) | |
tree | 16b530ef50b1834cfa100be04fbba308a358c049 /Master | |
parent | 568ffe8162fe17d75547f47ec1cc89522eb53603 (diff) |
(do_texmf_cnf): don't match TEXMFLOCALEDIR with
TEXMFLOCAL. Report from jfbu, 29 Mar 2019 13:48:24.
git-svn-id: svn://tug.org/texlive/trunk@50674 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index f93f6938d6b..26983c92d7d 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1352,7 +1352,7 @@ sub do_texmf_cnf { # we have to find TEXMFLOCAL TEXMFSYSVAR and TEXMFHOME foreach my $line (@texmfcnflines) { - if ($line =~ m/^TEXMFLOCAL/) { + if ($line =~ m/^TEXMFLOCAL\b/) { # don't find TEXMFLOCALEDIR # by default TEXMFLOCAL = TEXDIR/../texmf-local, if this is the case # we don't have to write a new setting. my $deftmlocal = dirname($vars{'TEXDIR'}); |