diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-05 14:14:53 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-05 14:14:53 +0000 |
commit | aefe3e7eb5caf2308d0c098e045a537a24dc42b6 (patch) | |
tree | acba8df0150eaa9ed094ccecd70ad8f238cbfc4d /win32/FindExt.pm | |
parent | e2c1c280e8ae4a1005c41c45cd7feaff78272738 (diff) | |
download | perl-aefe3e7eb5caf2308d0c098e045a537a24dc42b6.tar.gz |
Exclude VMS extensions on non-VMS.
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 9ba18b6552..830619e800 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 - Syslog SysV Langinfo)); + VMS Syslog SysV Langinfo)); $no = qr/^(?:$no)$/i; my %ext; |