You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by ge...@apache.org on 2004/11/19 16:07:15 UTC

svn commit: r105822 - httpd/test/trunk/perl-framework/Apache-Test

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;