diff options
author | Leon Brocard <acme@astray.com> | 2009-11-18 21:39:37 +0000 |
---|---|---|
committer | Leon Brocard <acme@astray.com> | 2009-11-18 21:39:37 +0000 |
commit | 960e02cf6495127c5c8a67618a9e6bd7408d7025 (patch) | |
tree | 62b5627140981b51a4ff99895bb8dad43f324a54 /utils | |
parent | 49866caf7899f20f20551459acdf4460ed22980e (diff) | |
download | perl-960e02cf6495127c5c8a67618a9e6bd7408d7025.tar.gz |
Add a few more distribution versus module name exceptions
Diffstat (limited to 'utils')
-rw-r--r-- | utils/perlivp.PL | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/perlivp.PL b/utils/perlivp.PL index 59865741e1..97832613ee 100644 --- a/utils/perlivp.PL +++ b/utils/perlivp.PL @@ -210,7 +210,10 @@ if (defined($Config{'extensions'})) { } # that's a distribution name, not a module name next if $_ eq 'IO/Compress'; - next if $_ eq 'Devel/DProf'; + next if $_ eq 'Devel/DProf'; + next if $_ eq 'libnet'; + next if $_ eq 'Locale/Codes'; + next if $_ eq 'podlators'; # test modules next if $_ eq 'XS/APItest'; next if $_ eq 'XS/APItest/KeywordRPN'; |