Author: geoff
Date: Fri Nov 19 07:07:14 2004
New Revision: 105822

Modified:
   httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL
Log:
skip over .svn directories


Modified: httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL
==============================================================================
--- httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL     (original)
+++ httpd/test/trunk/perl-framework/Apache-Test/Makefile.PL     Fri Nov 19 
07:07:14 2004
@@ -90,6 +90,22 @@
     }
 }
 
+if ($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 $self = shift;
+
+        my $path = shift;
+
+        return '' if $path =~ /\B\.svn\b/;
+
+        return $path;
+    }
+}
+
 sub MY::postamble {
     my $self = shift;
 

Reply via email to