summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-05-11 20:54:38 +0000
committerKarl Berry <karl@freefriends.org>2020-05-11 20:54:38 +0000
commit99753a4a0edc3571fa82cee09e2b0c74618e58cb (patch)
treee8bb702ea54976668ad0fc82873ee01d2701ca5e /Master/tlpkg
parent1e28eec3048eca3b4bb303fd89731719d16274e7 (diff)
fontools (11may20)
git-svn-id: svn://tug.org/texlive/trunk@55105 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds5
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 2101372985e..e1f47665751 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -4085,7 +4085,7 @@ sub doscripts {
# If not already present, create the platform-specific bindir entries.
#
my $build_tldir = "texk/texlive";
- chomp (my @platforms = `cd $Master/bin && ls`);
+ chomp (my @platforms = `cd $Master/bin && ls | grep -vw man`);
#
for my $s (@scripts) {
(my $linkname = $s) =~ s/\..*$//;
@@ -6133,6 +6133,7 @@ sub bindirs_symlink {
chomp (my @platforms = `cd $Master/bin && ls`);
for my $p (@platforms) {
next if $p eq "win32"; # windows handled separately
+ next if $p eq "man"; # non-platform pain
my $platdir = "$TOPDEST/bin/$p";
&xmkdir ($platdir);
&SYSTEM ("ln -s $linktarget $platdir/$linkname");
@@ -7006,7 +7007,7 @@ sub POST_preserve_bin {
# since they don't actually need to be committed (that is the whole
# point of preserving them), no harm done.
my (@binaries) = @_;
- chomp (my @platforms = `cd $Master/bin && ls`);
+ chomp (my @platforms = `cd $Master/bin && ls | grep -vw man`);
for my $p (@platforms) {
my $platdir = "$TOPDEST/bin/$p";
&xmkdir ($platdir);