diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-07 05:00:04 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-07 05:00:04 +0000 |
commit | 7d4e10f17df88f131ca573f1701bc2df369b8c0d (patch) | |
tree | b847bdcd40318717312b63b8a1243766cc8097d6 /lang/perl5.14/files | |
parent | disable some machine-dependent code by default; add a test target (diff) |
- Pull https://github.com/dagolden/extutils-makemaker/commit/a19beeaa9f0df1be60d5a45bf22c0a42dd600dca/raw
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@
Notes
Notes:
svn path=/head/; revision=292865
Diffstat (limited to 'lang/perl5.14/files')
-rw-r--r-- | lang/perl5.14/files/patch-cpan__ExtUtils-MakeMaker__lib__ExtUtils__MakeMaker.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/perl5.14/files/patch-cpan__ExtUtils-MakeMaker__lib__ExtUtils__MakeMaker.pm b/lang/perl5.14/files/patch-cpan__ExtUtils-MakeMaker__lib__ExtUtils__MakeMaker.pm new file mode 100644 index 000000000000..1b58053c2622 --- /dev/null +++ b/lang/perl5.14/files/patch-cpan__ExtUtils-MakeMaker__lib__ExtUtils__MakeMaker.pm @@ -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}; |