summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/TeXLive
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-05-12 03:03:03 +0000
committerNorbert Preining <norbert@preining.info>2020-05-12 03:03:03 +0000
commit675bcc9067ccef91624a9eca025506a4ce1d37b3 (patch)
tree03c68d83f091c038ad751310955938e407b46ff4 /systems/texlive/tlnet/tlpkg/TeXLive
parentfd95e879442e050790f06552eb074eeb7c5b4cab (diff)
CTAN sync 202005120303
Diffstat (limited to 'systems/texlive/tlnet/tlpkg/TeXLive')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLTREE.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLTREE.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLTREE.pm
index cb327946e3..79bc5fdda9 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLTREE.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLTREE.pm
@@ -1,4 +1,4 @@
-# $Id: TLTREE.pm 54067 2020-03-04 02:40:21Z karl $
+# $Id: TLTREE.pm 55106 2020-05-11 21:11:50Z karl $
# TeXLive::TLTREE.pm - work with the tree of all files
# Copyright 2007-2020 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -6,7 +6,7 @@
package TeXLive::TLTREE;
-my $svnrev = '$Revision: 54067 $';
+my $svnrev = '$Revision: 55106 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -199,8 +199,9 @@ sub _initialize_lines {
next if ($1 eq "D"); # ignore files which are removed
next if -d $entry && ! -l $entry; # keep symlinks to dirs (bin/*/man),
# ignore normal dirs.
- # collect architectures, assuming nothing is in bin/ but arch subdirs.
- if ($entry =~ m,^bin/([^/]*)/,) {
+ # collect architectures; bin/ has arch subdirs plus the plain man
+ # special case.
+ if ($entry =~ m,^bin/([^/]*)/, && $entry ne "bin/man") {
$archs{$1} = 1;
}
$self->{'_allfiles'}{$entry}{'lastchangedrev'} = $lastchanged;