diff options
author | Norbert Preining <preining@logic.at> | 2017-05-01 15:50:31 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-05-01 15:50:31 +0000 |
commit | 74ed57d4867e76c52f649c9c6b554422c8ab6697 (patch) | |
tree | 140708b210e1b81db951a24369ddc8b3836d10cd /Master/install-tl | |
parent | cff184ec632dc9c0e89bdb5f8b5a188b124b7f82 (diff) |
move default path setup earlier to fix profile seeding
git-svn-id: svn://tug.org/texlive/trunk@44135 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 271026b5124..cf298ed8b82 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -391,6 +391,9 @@ END_NO_CHECKSUMS # continuing with normal install +# set default directories +set_texlive_default_dirs(); + # check as soon as possible for GUI functionality to give people a chance # to interrupt. if (($opt_gui ne "text") && !$opt_no_gui && ($opt_profile eq "")) { @@ -762,7 +765,6 @@ sub final_remote_init { $vars{'doc_splitting_supported'} = $tlpdb->config_doc_container; } set_platforms_supported(); - set_texlive_default_dirs(); set_install_platform(); initialize_collections(); @@ -1879,6 +1881,9 @@ sub read_profile { next; } } + #require Data::Dumper; + #$Data::Dumper::Indent = 1; + #print Data::Dumper->Dump([\%vars], [qw(vars)]); # # if there are still keys in the %pro array, some unknown keys have # been written in the profile, bail out |