Message-ID: <
20080109195811.2c5353e5@r2d2>
Make libscan() in IPC::SysV's Makefile.PL inherit EU::MM's
libscan() behaviour.
p4raw-id: //depot/perl@32926
sub MY::libscan
{
- my($self, $path) = @_;
- return '' if $path =~ m! /(RCS|CVS|SCCS)/ | [~%]$ | \.(swp|orig|rej)$ !x;
- $path;
+ package MY;
+ my($self, $path) = @_;
+ return $path if $self->SUPER::libscan($path) and
+ $path !~ m! [~%]$
+ | \.(cache\.cm|swp|orig|rej)$
+ | regen\.pl$
+ !x;
+ return '';
}
sub MY::postamble