In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/557d584c578ba8b01a3c9eb7a3b88b7abb1855bb?hp=0b928c2f2427ad8eb633f553929143e5010eba1f>
- Log ----------------------------------------------------------------- commit 557d584c578ba8b01a3c9eb7a3b88b7abb1855bb Author: Karl Williamson <[email protected]> Date: Wed Mar 9 19:08:48 2011 -0700 installperl: Don't install unnecessary unicore/*.txt This removes from installation certain .txt files in unicore that are no longer needed for execution by Unicode::UCD, since commit 05dbc6f80f8f2d5774f53874803f5a20450bbe82 ----------------------------------------------------------------------- Summary of changes: installperl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/installperl b/installperl index f29f8e5..73448df 100755 --- a/installperl +++ b/installperl @@ -722,7 +722,7 @@ sub installlib { if ( $dir =~ /^unicore/ ) { if ( $name =~ /\.txt\z/ ) { # We can ignore most, but not all .txt files - return unless $name =~ /\A(?:UnicodeData|Blocks|Scripts|CompositionExclusions|CaseFolding|SpecialCasing|NamedSequences)\.txt\z/; + return unless $name =~ /\A(?:Blocks|CaseFolding|SpecialCasing|NamedSequences)\.txt\z/; } else { # TestProp only needed during testing -- Perl5 Master Repository
