diff options
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index ad31d8c9769..3d45319cd5c 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -86,6 +86,9 @@ BEGIN { # make Perl find our packages first: unshift (@INC, "$Master/tlpkg"); + # add also tlpkg/TeXLive for copied modules like JSON which + # requests JSON::BackportPP + unshift (@INC, "$Master/tlpkg/TeXLive"); unshift (@INC, "$Master/texmf-dist/scripts/texlive"); } |