summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/install-tl.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/install-tl.pl b/Master/install-tl.pl
index cf84cec734c..b5737ec9900 100755
--- a/Master/install-tl.pl
+++ b/Master/install-tl.pl
@@ -148,12 +148,12 @@ if ($opt_profile eq "") {
my $ret = run_menu();
if ($ret == $MENU_QUIT) {
# do_cleanup(); MISSING
- dump_vars('./vars');
+ dump_vars("$system_tmpdir/texlive.vars");
exit(1);
}
if ($ret == $MENU_ABORT) {
# NO do_cleanup()!
- dump_vars('./vars');
+ dump_vars("$system_tmpdir/texlive.vars");
exit(2);
}
if ($ret != $MENU_INSTALL) {
@@ -171,7 +171,7 @@ create_fmtutil($localtlpdb,$vars{'TEXMFSYSVAR'},$vars{'TEXMFLOCAL'});
create_updmap($localtlpdb,$vars{'TEXMFSYSVAR'},$vars{'TEXMFLOCAL'});
create_language($localtlpdb,$vars{'TEXMFSYSVAR'},$vars{'TEXMFLOCAL'});
do_postinst_stuff();
-dump_vars('./vars');
+dump_vars("$system_tmpdir/texlive.vars");
# if we installed from a profile we don't need to write it out
if (-r "$vars{'TEXDIR'}/$InfraLocation/texlive.profile") {
warn "Not overwritting already present profile in $vars{'TEXDIR'}/$InfraLocation/texlive.profile\n";