1 parent 7c9eb7e commit 7fe3a3aCopy full SHA for 7fe3a3a
1 file changed
Makefile.PL
@@ -35,6 +35,23 @@ Perl.
35
36
=cut
37
38
+BEGIN {
39
+use ExtUtils::MM_Any;
40
+no warnings qw(redefine);
41
+
42
+# get rid of the warning about README.pod, because I'm using it.
43
+# It's also in INSTALL.SKIP
44
+sub ExtUtils::MM_Any::libscan {
45
+ my($self,$path) = @_;
46
47
+ my($dirs,$file) = ($self->splitpath($path))[1,2];
48
+ return '' if grep /^(?:RCS|CVS|SCCS|\.svn|_darcs)$/,
49
+ $self->splitdir($dirs), $file;
50
51
+ return $path;
52
+ }
53
+}
54
55
use File::Spec::Functions qw(catfile);
56
57
my $module = __PACKAGE__;
0 commit comments