projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d2a6e61
)
FindExt matches on extension name, not directory name, so IPC-SysV not SysV.
Nicholas Clark [Sat, 7 Feb 2009 09:44:08 +0000 (09:44 +0000)]
(Diagnosed by Max Maischein)
win32/FindExt.pm
patch
|
blob
|
blame
|
history
diff --git
a/win32/FindExt.pm
b/win32/FindExt.pm
index
830619e
..
6894689
100644
(file)
--- 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;