diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl index b6338102c24..f6bacc3c9e3 100755 --- a/Master/install-tl.pl +++ b/Master/install-tl.pl @@ -784,6 +784,11 @@ sub do_postinst_stuff { # Step 4: run the programs + tllog($::LOG_NORMAL, "running mktexlsr $TEXDIR/texmf-dist " . + "$TEXDIR/texmf $TEXDIR/texmf-local\n"); + system('mktexlsr', "$TEXDIR/texmf-dist", "$TEXDIR/texmf", + "$TEXDIR/texmf-local"); + # these 3 are texlua wrappers calling the respective perl scripts # on win32 they have .texlua extensions so that should work ;-) tllog($::LOG_NORMAL, "running generate-fmtutil\n"); @@ -795,11 +800,6 @@ sub do_postinst_stuff { tllog($::LOG_NORMAL, "running generate-language\n"); system("generate-language"); - tllog($::LOG_NORMAL, "running mktexlsr $TEXDIR/texmf-dist " . - "$TEXDIR/texmf $TEXDIR/texmf-local\n"); - system('mktexlsr', "$TEXDIR/texmf-dist", "$TEXDIR/texmf", - "$TEXDIR/texmf-local"); - tllog($::LOG_NORMAL, "running updmap-sys\n"); system('updmap-sys', '--nohash'); |