diff options
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Master/install-tl b/Master/install-tl index 674861aa150..12588d2f347 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -51,7 +51,6 @@ use TeXLive::TLUtils qw(platform platform_desc get_system_tmpdir member process_logging_options rmtree mkdirhier make_var_skeleton make_local_skeleton install_package copy install_packages dirname setup_programs native_slashify forward_slashify); -#use TeXLive::TLMedia; use TeXLive::TLPOBJ; use TeXLive::TLPDB; use TeXLive::TLConfig; @@ -112,7 +111,7 @@ $::run_menu = sub { die "no UI defined." ; }; my $default_scheme='scheme-full'; # common fmtutil args, keep in sync with tlmgr.pl. -my $common_fmtutil_arguments = \ +our $common_fmtutil_args = "--no-error-if-no-engine=$TeXLive::TLConfig::PartialEngineSupport"; # some arrays where the lists of collections to be installed are saved @@ -939,7 +938,7 @@ operations might be disturbed.\n\n"; # all formats option if ($vars{'option_fmt'}) { info("pre-generating all format files (fmtutil-sys --all), be patient..."); - log(`fmtutil-sys $common_fmtutil_arguments --all 2>&1`); + log(`fmtutil-sys $common_fmtutil_args --all 2>&1`); info("done\n"); } |