Re: [PATCH] Do not install change logs, READMEs, etc...
authorMichael G. Schwern <schwern@pobox.com>
Fri, 27 May 2005 12:33:27 +0000 (05:33 -0700)
committerH.Merijn Brand <h.m.brand@xs4all.nl>
Fri, 27 May 2005 19:22:39 +0000 (19:22 +0000)
Message-ID: <20050527193327.GC17504@windhund.schwern.org>

p4raw-id: //depot/perl@24610

installperl

index 5ba613a..a707954 100755 (executable)
@@ -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 '';