summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-04-21 00:17:48 +0000
committerKarl Berry <karl@freefriends.org>2014-04-21 00:17:48 +0000
commit1df297d584d71161b479472d60d102e11fd9b2c7 (patch)
treee1545ef95b66a0a1856579fde19b3ca1069ccd9c /Master/install-tl
parentfae622b32d248acd0eefefeb6990fef5e5da816c (diff)
allow for luajittex not available on all platforms
git-svn-id: svn://tug.org/texlive/trunk@33571 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl6
1 files changed, 5 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl
index c62fac5c3c7..674861aa150 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -111,6 +111,10 @@ $::run_menu = sub { die "no UI defined." ; };
# the default scheme to be installed
my $default_scheme='scheme-full';
+# common fmtutil args, keep in sync with tlmgr.pl.
+my $common_fmtutil_arguments = \
+ "--no-error-if-no-engine=$TeXLive::TLConfig::PartialEngineSupport";
+
# some arrays where the lists of collections to be installed are saved
# our for menus
our @collections_std;
@@ -935,7 +939,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 --all 2>&1`);
+ log(`fmtutil-sys $common_fmtutil_arguments --all 2>&1`);
info("done\n");
}