diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-03-09 19:08:48 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-03-09 19:30:56 -0700 |
commit | 557d584c578ba8b01a3c9eb7a3b88b7abb1855bb (patch) | |
tree | d9cb67799881cc4879af6808e1c8f0a46133c441 /installperl | |
parent | 0b928c2f2427ad8eb633f553929143e5010eba1f (diff) | |
download | perl-557d584c578ba8b01a3c9eb7a3b88b7abb1855bb.tar.gz |
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
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index f29f8e512f..73448df4d8 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 |