diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-11-21 17:41:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-11-21 17:49:09 -0700 |
commit | 971c5244800c9017603979e4f5202b8e5e374b62 (patch) | |
tree | 31aa1a477ca43c71884c1b9b0810a89f7ac6bf0a /installperl | |
parent | 8f82b567179d2b438689e3b9818104ecfaee6373 (diff) | |
download | perl-971c5244800c9017603979e4f5202b8e5e374b62.tar.gz |
PATCH: [perl #104226]: Name.pm missing from unicore
The installperl script needed to be updated to include this file.
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installperl b/installperl index 73448df4d8..a28b8499ca 100755 --- a/installperl +++ b/installperl @@ -728,7 +728,7 @@ sub installlib { # TestProp only needed during testing return if $name =~ /\ATestProp.pl\z/; # we need version and *.pl files and can skip the rest - return unless $name =~ /\A(?:version|\w+\.pl)\z/; + return unless $name =~ /\A(?:version|\w+\.p[lm])\z/; } } |