summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2007-12-04 15:43:21 +0000
committerNorbert Preining <preining@logic.at>2007-12-04 15:43:21 +0000
commit89221f59ee74a56ee842fad38609aa49d389e940 (patch)
treef15332f059cc6ee1935594dd0e9aedf6107e1720
parentf8a0976ccedd57859b89b52e4ef9c8c7c31aa929 (diff)
dump vars into TMPDIR/texlive.vars
git-svn-id: svn://tug.org/texlive/trunk@5708 c570f23f-e606-0410-a88d-b1316a301751
-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";