diff options
author | Norbert Preining <preining@logic.at> | 2009-06-14 21:41:55 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-14 21:41:55 +0000 |
commit | 39853e7aa6c7fd17fcd85388579b16e6e5b98894 (patch) | |
tree | cba43e1f3fa91131698b57a33ce1a290ba8f82f2 /Master/tlpkg/tlpostcode | |
parent | ae881cd7c311a98e44844bd29df7a6a954926845 (diff) |
tlpostcode for xetex: check on cygwin case-insensitively
git-svn-id: svn://tug.org/texlive/trunk@13741 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlpostcode')
-rw-r--r-- | Master/tlpkg/tlpostcode/xetex.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/tlpostcode/xetex.pl b/Master/tlpkg/tlpostcode/xetex.pl index e996e39fb49..d4fa523c72a 100644 --- a/Master/tlpkg/tlpostcode/xetex.pl +++ b/Master/tlpkg/tlpostcode/xetex.pl @@ -72,7 +72,7 @@ if (win32()) { # cygwin specific warning # we don't have platform available ... chomp(my $un = `uname`); - if ($un =~ m/cygwin/) { + if ($un =~ m/cygwin/i) { if (! -r "/usr/bin/cygfontconfig-1.dll") { printf STDERR "\nXeTeX on Cygwin requires fontconfig.\nPlease run cygwin's setup program and install the fontconfig package.\n"; } |