diff options
-rwxr-xr-x | Master/install-tl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 5e639666a8e..b02493e6968 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -807,6 +807,16 @@ operations might be disturbed.\n\n"; system("tlmgr", "paper", "letter"); } + # + # luatex/context + # we only call luatools --generate once at installation time, the + # rest must be managed by the user, Taco email 2010-05-26 + if (defined($install{"context"} && $install{"context"} == 1) { + info("Generating the initial ConTeXt MkIV cache, be patient ..."); + log(`luatools --generate`); + info("done\n"); + } + # all formats option if ($vars{'option_fmt'}) { info("pre-generating all format files (fmtutil-sys --all), be patient..."); @@ -819,7 +829,7 @@ operations might be disturbed.\n\n"; # set symlinks do_path_adjustments() if $vars{'option_path'}; - # no do the system integration: + # now do the system integration: # on unix this means setting up symlinks # on w32 this means adding to path, settting registry values # on both, we run the postaction directives of the tlp |