diff options
author | Michael G. Schwern <schwern@pobox.com> | 2005-05-27 05:33:27 -0700 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-27 19:22:39 +0000 |
commit | 38cabd2daffcdb193c3134c3eb36b7ceaa4ca051 (patch) | |
tree | 535131513a081c44ebca054db1e92ab56a880690 /installperl | |
parent | 60b9f5a768d813874b27945f3490540726428049 (diff) | |
download | perl-38cabd2daffcdb193c3134c3eb36b7ceaa4ca051.tar.gz |
Re: [PATCH] Do not install change logs, READMEs, etc...
Message-ID: <20050527193327.GC17504@windhund.schwern.org>
p4raw-id: //depot/perl@24610
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index 5ba613af72..a707954a1a 100755 --- a/installperl +++ b/installperl @@ -816,7 +816,7 @@ sub installlib { # ignore READMEs, MANIFESTs, INSTALL docs, META.ymls and change logs. # Changes.e2x and README.e2x are needed by enc2xs. return if $name =~ m{^(?:README|MANIFEST|META\.yml|INSTALL)$}; - return if $name =~ m{^(?:TODO|BUGS|CREDITS))$}i; + return if $name =~ m{^(?:TODO|BUGS|CREDITS)$}i; return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i; $name = "$dir/$name" if $dir ne ''; |