This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b928c2
)
installperl: Don't install unnecessary unicore/*.txt
author
Karl Williamson
<public@khwilliamson.com>
Thu, 10 Mar 2011 02:08:48 +0000
(19:08 -0700)
committer
Karl Williamson
<public@khwilliamson.com>
Thu, 10 Mar 2011 02:30:56 +0000
(19:30 -0700)
This removes from installation certain .txt files in unicore that
are no longer needed for execution by Unicode::UCD, since commit
05dbc6f80f8f2d5774f53874803f5a20450bbe82
installperl
patch
|
blob
|
blame
|
history
diff --git
a/installperl
b/installperl
index
f29f8e5
..
73448df
100755
(executable)
--- 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|CompositionExclusion
s|CaseFolding|SpecialCasing|NamedSequences)\.txt\z/;
+ return unless $name =~ /\A(?:
Block
s|CaseFolding|SpecialCasing|NamedSequences)\.txt\z/;
}
else {
# TestProp only needed during testing