Skip to content

Commit

Permalink
installperl: Don't install unnecessary unicore/*.txt
Browse files Browse the repository at this point in the history
This removes from installation certain .txt files in unicore that
are no longer needed for execution by Unicode::UCD, since commit
05dbc6f
  • Loading branch information
Karl Williamson committed Mar 10, 2011
1 parent 0b928c2 commit 557d584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installperl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 557d584

Please sign in to comment.