diff options
author | Karl Berry <karl@freefriends.org> | 2017-11-16 22:15:04 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-11-16 22:15:04 +0000 |
commit | bdb7ac9c2d3d7ef690d7499162aa15f0b8e51d21 (patch) | |
tree | 5c7ab0f01b2e24254e55854ae74a47e179a9281b /Build | |
parent | 08c9009c085b5fb5cd2151a112662e3c689b67f7 (diff) |
musixtex (16nov17)
git-svn-id: svn://tug.org/texlive/trunk@45833 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index e20b80d9a94..ccbf7a22a42 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,13 +1,13 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 45806 2017-11-14 21:16:47Z karl $ +# $Id: tlmgr.pl 45815 2017-11-15 03:45:40Z preining $ # # Copyright 2008-2017 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. # -my $svnrev = '$Revision: 45806 $'; -my $datrev = '$Date: 2017-11-14 22:16:47 +0100 (Tue, 14 Nov 2017) $'; +my $svnrev = '$Revision: 45815 $'; +my $datrev = '$Date: 2017-11-15 04:45:40 +0100 (Wed, 15 Nov 2017) $'; my $tlmgrrevision; my $prg; if ($svnrev =~ m/: ([0-9]+) /) { @@ -1500,7 +1500,7 @@ sub action_info { @whattolist = $tlm->list_packages; } # add also the local packages - TeXLive::TLUtils::push_uniq(@whattolist, $localtlpdb->list_packages); + TeXLive::TLUtils::push_uniq(\@whattolist, $localtlpdb->list_packages); } else { @whattolist = ($what, @todo); } @@ -6731,7 +6731,7 @@ END_NO_INTERNET } if (!$local_copy_tlpdb_used) { $remotetlpdb = TeXLive::TLPDB->new(root => $location, verify => 1); - if ($is_main) { + if ($is_main && $remotetlpdb) { if ($remotetlpdb->verification_status == $VS_UNSIGNED) { # we don't allow unsigned main data bases! tldie("$prg: main database at $location is not signed\n"); @@ -9259,7 +9259,7 @@ This script and its documentation were written for the TeX Live distribution (L<http://tug.org/texlive>) and both are licensed under the GNU General Public License Version 2 or later. -$Id: tlmgr.pl 45806 2017-11-14 21:16:47Z karl $ +$Id: tlmgr.pl 45815 2017-11-15 03:45:40Z preining $ =cut # to remake HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html |