In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ebbb719ba6d72169043d2d8e55e6c70c19f8a47c?hp=7c40aa71c55530661091304bfd36d642ff33d9b6>
- Log ----------------------------------------------------------------- commit ebbb719ba6d72169043d2d8e55e6c70c19f8a47c Author: Nicholas Clark <[email protected]> Date: Thu Sep 24 19:02:52 2009 +0100 Fix a22f28a4268aa03c - array, not array reference. (gnat would be proud) Just because it's syntactically valid and "works on my machine", er OS, doesn't mean that it's bug free, even after careful inspection. ----------------------------------------------------------------------- Summary of changes: make_ext.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/make_ext.pl b/make_ext.pl index 0fe892f..e606c36 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -116,7 +116,7 @@ foreach (@extspec) { my $makecmd = shift @pass_through; # Should be something like MAKE=make unshift @pass_through, 'PERL_CORE=1'; -my @dirs = $opts{dir} || ['ext', 'cpan']; +my @dirs = @{$opts{dir} || ['ext', 'cpan']}; my $target = $opts{target}[0]; $target = 'all' unless defined $target; -- Perl5 Master Repository
