Author: stevehay
Date: Fri Jul 21 22:08:08 2023
New Revision: 1911186

URL: http://svn.apache.org/viewvc?rev=1911186&view=rev
Log:
Fix apparent wrong scoping of $mp_gen

It has been like this since the change that first introduced the 
MOD_PERL_2_BUILD (r441414).

Modified:
    perl/Apache-SizeLimit/trunk/Makefile.PL

Modified: perl/Apache-SizeLimit/trunk/Makefile.PL
URL: 
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/Makefile.PL?rev=1911186&r1=1911185&r2=1911186&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/Makefile.PL (original)
+++ perl/Apache-SizeLimit/trunk/Makefile.PL Fri Jul 21 22:08:08 2023
@@ -12,7 +12,7 @@ my $mp_gen;
 # also set MP_APXS
 if ($ENV{MOD_PERL_2_BUILD}) {
     push @ARGV, "-apxs", $ENV{MP_APXS};
-    my $mp_gen = satisfy_mp_generation(2);
+    $mp_gen = satisfy_mp_generation(2);
 }
 else {
     $mp_gen = satisfy_mp_generation();


Reply via email to