diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-07 09:44:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-07 09:44:08 +0000 |
commit | 030a108e796cc850037b6c7d5fe44f6ed36c1d97 (patch) | |
tree | c986b4885bc1e5465843a6b1359f82e2ab7c459e /win32/FindExt.pm | |
parent | d2a6e61ca10408703f6a8faa72cb1843e0f9b361 (diff) | |
download | perl-030a108e796cc850037b6c7d5fe44f6ed36c1d97.tar.gz |
FindExt matches on extension name, not directory name, so IPC-SysV not SysV.
(Diagnosed by Max Maischein)
Diffstat (limited to 'win32/FindExt.pm')
-rw-r--r-- | win32/FindExt.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 830619e800..6894689ba1 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -6,7 +6,7 @@ use strict; use warnings; my $no = join('|',qw(GDBM_File ODBM_File NDBM_File DB_File - VMS Syslog SysV Langinfo)); + VMS Syslog IPC-SysV Langinfo)); $no = qr/^(?:$no)$/i; my %ext; |