diff options
author | Karl Berry <karl@freefriends.org> | 2014-04-21 17:28:32 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-04-21 17:28:32 +0000 |
commit | 227e780cfebb4e6fd172efa9b6d3af56e4c59128 (patch) | |
tree | 5de9dec134feece46f86d01208ae597244cdd907 /Master/texmf-dist | |
parent | 4417c0f33bed6842ba7e800ecf82d0ea4d4497ce (diff) |
more x86_64 cygwin checks
git-svn-id: svn://tug.org/texlive/trunk@33590 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 28a0bfc8f5c..83a546fe351 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -5069,8 +5069,8 @@ sub check_file { if (-r $f) { return 1; } else { - # not -r, so check for the extensions .bat and .exe on w32 and cygwin - if (($a eq "win32") || ($a eq "i386-cygwin")) { + # not -r, so check for the extensions .bat and .exe on windoze-ish. + if ($a =~ /win[0-9]|.*-cygwin/) { if (-r "$f.exe" || -r "$f.bat") { return 1; } |