In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/030a108e796cc850037b6c7d5fe44f6ed36c1d97?hp=d2a6e61ca10408703f6a8faa72cb1843e0f9b361>
- Log ----------------------------------------------------------------- commit 030a108e796cc850037b6c7d5fe44f6ed36c1d97 Author: Nicholas Clark <n...@ccl4.org> Date: Sat Feb 7 09:44:08 2009 +0000 FindExt matches on extension name, not directory name, so IPC-SysV not SysV. (Diagnosed by Max Maischein) ----------------------------------------------------------------------- Summary of changes: win32/FindExt.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 830619e..6894689 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; -- Perl5 Master Repository