diff options
author | Norbert Preining <preining@logic.at> | 2018-03-09 09:20:09 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-03-09 09:20:09 +0000 |
commit | 5bb75e81c7e3d9f46c6f11d4d6a04a3990786fd3 (patch) | |
tree | 9c33eb9574b83bac8c3866927c7dae9539932e32 /Master/install-tl | |
parent | 4eb4a0358e95f2cd0a037eccb137939ec3898889 (diff) |
fix overwritten location
git-svn-id: svn://tug.org/texlive/trunk@46898 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index e75c5e8096e..e366ff9d349 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1,7 +1,7 @@ #!/usr/bin/env perl # $Id$ # -# Copyright 2007-2017 +# Copyright 2007-2018 # Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg. # This file is licensed under the GNU General Public License version 2 # or any later version. @@ -2004,6 +2004,7 @@ sub save_options_into_tlpdb { $localtlpdb->option ("location", $final_loc); } for my $o (keys %TeXLive::TLConfig::TLPDBOptions) { + next if ($o eq "location"); # done above already $localtlpdb->option ($o, $vars{"tlpdbopt_$o"}); } my @archs; |