From: Steve Peters Date: Sun, 22 Oct 2006 21:47:11 +0000 (+0000) Subject: Removed typo that caused a variable to shadow an existing variable X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f5e29820bbc6cba03b02e3d6f961db473df8010e;p=p5sagit%2Fp5-mst-13.2.git Removed typo that caused a variable to shadow an existing variable in an external scope. p4raw-id: //depot/perl@29083 --- diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index 5cc63d9..90b82e4 100755 --- a/ext/threads/Makefile.PL +++ b/ext/threads/Makefile.PL @@ -64,7 +64,7 @@ if (grep { $_ eq 'PERL_CORE=1' } @ARGV) { my $prereqs; if (!$ENV{PERL_CORE}) { - my $prereqs = { + $prereqs = { 'strict' => 0, 'warnings' => 0, 'overload' => 0,