Change 31672 by [EMAIL PROTECTED] on 2007/08/01 17:01:29
For files ignored by installperl:
- Split README handling into a separate case.
- Extend the MANIFEST pattern to include .SKIP.
Based on the following:
Subject: [PATCH] Don't install MANIFEST.SKIP files
From: "Jerry D. Hedden" <[EMAIL PROTECTED]>
Date: Wed, 1 Aug 2007 12:28:49 -0400
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/installperl#143 edit
Differences ...
==== //depot/perl/installperl#143 (xtext) ====
Index: perl/installperl
--- perl/installperl#142~31570~ 2007-07-09 06:15:05.000000000 -0700
+++ perl/installperl 2007-08-01 10:01:29.000000000 -0700
@@ -841,7 +841,8 @@
# ignore READMEs, MANIFESTs, INSTALL docs, META.ymls and change logs.
# Changes.e2x and README.e2x are needed by enc2xs.
- return if $name =~ m{^(?:README(?:\.\w+)?|MANIFEST|META\.yml|INSTALL)$} &&
$name ne 'README.e2x';
+ return if $name =~ m{^(?:README(?:\.\w+)?)$} && $name ne 'README.e2x';
+ return if $name =~ m{^(?:MANIFEST(?:\.SKIP)?|META\.yml|INSTALL)$};
return if $name =~ m{^(?:TODO|BUGS|CREDITS)$}i;
return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i;
End of Patch.