Actually I think it's simpler than what I thought. Since the workaround is needed when build A-T alone, this should do the trick. Could you please test that it still does what it's supposed to do?

Index: Apache-Test/Makefile.PL
===================================================================
--- Apache-Test/Makefile.PL     (revision 111732)
+++ Apache-Test/Makefile.PL     (working copy)
@@ -140,12 +140,12 @@
     }
 }

-if ($ExtUtils::MakeMaker::VERSION < 6.06) {
+if (TOP_LEVEL && $ExtUtils::MakeMaker::VERSION < 6.06) {
     # now that we're using subversion, make sure that
     # .svn directories are skipped during the build process
     # for old versions of MakeMaker

-    sub MY::libscan {
+    *MY::libscan = sub {
         my $self = shift;

         my $path = shift;
@@ -153,7 +153,7 @@
         return '' if $path =~ /\B\.svn\b/;

         return $path;
-    }
+    };
 }

 sub MY::postamble {


-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Reply via email to