summaryrefslogtreecommitdiff
path: root/lib/ExtUtils
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2009-08-05 21:40:55 +0100
committerDavid Mitchell <davem@iabyn.com>2009-08-05 21:40:55 +0100
commit3ed7368117d18c1af3bc089adf0d9fcdf5c04cd4 (patch)
treea349c2028627c778dd84ba67e5d67a1393a02793 /lib/ExtUtils
parentcb06ebec412ca5c62617b8007098bd39019a09df (diff)
downloadperl-3ed7368117d18c1af3bc089adf0d9fcdf5c04cd4.tar.gz
fix for EU:MM 6.55_02 failing test,
as suggested by Schwern
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r--lib/ExtUtils/t/00compile.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/t/00compile.t b/lib/ExtUtils/t/00compile.t
index cadfe55fb6..20f7ded6f4 100644
--- a/lib/ExtUtils/t/00compile.t
+++ b/lib/ExtUtils/t/00compile.t
@@ -21,8 +21,8 @@ chdir "..";
my $manifest = "MANIFEST";
open(my $manifest_fh, "<", $manifest) or die "Can't open $manifest: $!";
my @modules = map { m{^lib/(\S+)}; $1 }
- grep { m{^lib/\S+\.pm} }
- <$manifest_fh>;
+ grep { m{^lib/ExtUtils/\S*\.pm} }
+ grep { !m{/t/} } <$manifest_fh>;
chomp @modules;
close $manifest_fh;