diff options
-rw-r--r-- | Master/tlpkg/TeXLive/TLPostActions.pm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Master/tlpkg/TeXLive/TLPostActions.pm b/Master/tlpkg/TeXLive/TLPostActions.pm index 4b24b22f07e..3b4e36d35c8 100644 --- a/Master/tlpkg/TeXLive/TLPostActions.pm +++ b/Master/tlpkg/TeXLive/TLPostActions.pm @@ -25,7 +25,7 @@ my $mainmenu = "TeX Live 2008"; our %PostInstall; our %PostRemove; -# +# NOT ENABLED !!!!! # context post install actions sub do_install_bin_context { my ($texdir, $texdirw, $texmfsysvar) = @_; @@ -47,15 +47,18 @@ sub do_install_bin_context { system("mtxrun", "--script", "fonts", "--reload"); } # -# what to do with permissions, multi-user, etc etc etc -$PostInstall{"bin-context"} = \&do_install_bin_context; +# That has to be sorted out and maybe changed at a later time, so do NOT +# enable that for now. +###$PostInstall{"bin-context"} = \&do_install_bin_context; # ATM do the same for luatex as for context sub do_install_luatex { do_install_bin_context(@_); } -$PostInstall{"luatex"} = \&do_install_luatex; +# +# SEE ABOVE +# $PostInstall{"luatex"} = \&do_install_luatex; # xetex |