diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-09-07 11:38:13 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-07 20:30:43 +0000 |
commit | 40b90ac360c5ba3f485ee4b716fd0937d89c1054 (patch) | |
tree | 34226ccdbc953fffaa92dd1168fb95e5fcdd3a49 | |
parent | b3fe48277ce10a58a036b1303b4d9ed1e50428b1 (diff) | |
download | perl-40b90ac360c5ba3f485ee4b716fd0937d89c1054.tar.gz |
(was Re: MakeMaker: MM_Unix rule excluding pods)
Message-ID: <20010907153813.K606@blackrider>
p4raw-id: //depot/perl@11942
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 8a15f84344..9f09aac0c6 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -1583,7 +1583,7 @@ sub init_dirscan { # --- File and Directory Lists (.xs .pm .pod etc) # Remove "Configure.pm" and similar, if it's not the only pod listed # To force inclusion, just name it "Configure.pod", or override MAN3PODS foreach $name (keys %manifypods) { - if ($name =~ /(config|setup).*\.pm/is) { + if ($self->{PERL_CORE} and $name =~ /(config|setup).*\.pm/is) { delete $manifypods{$name}; next; } |