diff options
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 659c1e42609..6eb03323264 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1180,11 +1180,11 @@ sub load_taxonomy_datafile { my $fpath = $localtlpdb->root . "/texmf/scripts/texlive/var/texcatalogue.keywords"; if (! -r $fpath) { - tlwarn("tlmgr: taxonomy file $fpath not readable.\n"); + tlwarn("tlmgr: taxonomy file $fpath not readable: $!\n"); return; } if (!open (TAXF, $fpath)) { - tlwarn("tlmgr: taxonomy file $fpath cannot be opened.\n"); + tlwarn("tlmgr: taxonomy file $fpath cannot be opened: $!\n"); return; } # suck in the whole file contents @@ -5953,7 +5953,7 @@ The respective locations are as follows: Final repetition: as explained above, C<tlmgr> does I<not> use C<generate updmap> for font map files. Therefore, if you want to make use of C<updmap-local.cfg>, you must run C<tlmgr generate updmap> -yourself after making any local changes. +and C<updmap-sys> yourself after making any local changes. =head1 CONFIGURATION FILE |