1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00
to fix:
 Can't use string "XXX" as an ARRAY ref while "strict refs" in use at
 /usr/local/lib/perl5/5.14.2/ExtUtils/MM_Unix.pm line 2893.

- perl 5.14.[012] shipped with a broken version of ExtUtils::MakeMakker (6.57_06)
  which is fixed in 6.57_06.  This patch can hopefully go away when/if perl 5.14.3
  is released.

- Bump PORTREVISION

PR:         ports/165457
With Hat:   perl@
This commit is contained in:
Philip M. Gollucci 2012-03-07 05:00:04 +00:00
parent 752387e658
commit 7d4e10f17d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292865
4 changed files with 24 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= perl
PORTVERSION= ${PERL_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= lang devel perl5
MASTER_SITES= CPAN \
${MASTER_SITE_LOCAL:S/$/:local/} \

View File

@ -0,0 +1,11 @@
--- ./cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm.orig 2012-03-07 04:45:16.252747795 +0000
+++ ./cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm 2012-03-07 04:46:18.391746557 +0000
@@ -401,6 +401,8 @@
my($class,$self) = @_;
my($key);
+ _convert_compat_attrs($self) if defined $self && $self;
+
# Store the original args passed to WriteMakefile()
foreach my $k (keys %$self) {
$self->{ARGS}{$k} = $self->{$k};

View File

@ -7,7 +7,7 @@
PORTNAME= perl
PORTVERSION= ${PERL_VERSION}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= lang devel perl5
MASTER_SITES= CPAN \
${MASTER_SITE_LOCAL:S/$/:local/} \

View File

@ -0,0 +1,11 @@
--- ./cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm.orig 2012-03-07 04:45:16.252747795 +0000
+++ ./cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm 2012-03-07 04:46:18.391746557 +0000
@@ -401,6 +401,8 @@
my($class,$self) = @_;
my($key);
+ _convert_compat_attrs($self) if defined $self && $self;
+
# Store the original args passed to WriteMakefile()
foreach my $k (keys %$self) {
$self->{ARGS}{$k} = $self->{$k};