summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec/ctan2tds
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-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);