X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=installperl;h=d50ee74847b4b90d3cd657a1ff57dc01a4ee16a4;hb=0ad39044976812f3d7577556791797d57eb65d61;hp=6a20e7122c3a63d607cedef575e709fe31ada994;hpb=0661f42382c6c9047f6bb741b9d41f6f7333902f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/installperl b/installperl index 6a20e71..d50ee74 100755 --- a/installperl +++ b/installperl @@ -805,10 +805,10 @@ sub installlib { $dir =~ m{/t(?:/|$)}; # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp # scripts in lib/ExtUtils, the prove script in lib/Test/Harness, - # the corelist script from lib/Module/CoreList/bin and ptar in + # the corelist script from lib/Module/CoreList/bin and ptar* in # lib/Archive/Tar/bin # (they're installed later with other utils) - return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar)\z/; + return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar|ptardiff)\z/; # ignore the Makefiles return if $name =~ /^makefile$/i; # ignore the test extensions @@ -818,7 +818,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{^(?:README(?:\.\w+)?|MANIFEST|META\.yml|INSTALL)$} && $name ne 'README.e2x'; return if $name =~ m{^(?:TODO|BUGS|CREDITS)$}i; return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i;