diff options
author | Karl Berry <karl@freefriends.org> | 2014-04-21 16:23:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-04-21 16:23:10 +0000 |
commit | 7b72992eadeb826f6af15ec85034c107877c7005 (patch) | |
tree | 0ffbb6597914cc9daf37b1e87a6c91d45f33c0eb /Master/tlpkg/TeXLive/TLTREE.pm | |
parent | c97695ed944fbddb8bc71b7fce866ccb76722c0f (diff) |
look for .exe with x86_64-cygwin, like i386-cygwin
git-svn-id: svn://tug.org/texlive/trunk@33582 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLTREE.pm')
-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"; |