diff options
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLTREE.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm index a2de867f6b8..e63e9946443 100644 --- a/Master/tlpkg/TeXLive/TLTREE.pm +++ b/Master/tlpkg/TeXLive/TLTREE.pm @@ -278,12 +278,12 @@ sub _get_files_matching_glob_pattern } } - if ($dirpart =~ m,^bin/(win32|i386-cygwin), + if ($dirpart =~ m,^bin/(win[0-9|.*-cygwin), || $dirpart =~ m,tlpkg/installer,) { - # for windows-iwsh we want to automatch more extensions. + # for windows-ish we want to automatch more extensions. foreach my $f (@candfiles) { my $w32_binext; - if ($dirpart =~ m,^bin/i386-cygwin,) { + if ($dirpart =~ m,^bin/.*-cygwin,) { $w32_binext = "exe"; # cygwin has .exe but nothing else } else { $w32_binext = "(exe|dll)(.manifest)?|texlua|bat|cmd"; |