summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-10-06 13:42:00 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-10-06 13:42:00 +0000
commit9237a471130e1e59caf11c4141aedcf1ed2ffdce (patch)
tree6261196cbcd80a4aa698940ddee6c68faa20f45a /ext
parente996bb8ad990803f73b79fefe52e52196fa5c9fd (diff)
downloadperl-9237a471130e1e59caf11c4141aedcf1ed2ffdce.tar.gz
Be nice with subversion hidden directories
p4raw-id: //depot/perl@25707
Diffstat (limited to 'ext')
-rwxr-xr-xext/Compress/Zlib/Makefile.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Compress/Zlib/Makefile.PL b/ext/Compress/Zlib/Makefile.PL
index d377f17038..aeb58e8c02 100755
--- a/ext/Compress/Zlib/Makefile.PL
+++ b/ext/Compress/Zlib/Makefile.PL
@@ -175,7 +175,6 @@ if (eval {require ExtUtils::Constant; 1}) {
NAMES => \@names,
C_FILE => 'constants.h',
XS_FILE => 'constants.xs',
-
);
}
else {
@@ -194,7 +193,8 @@ sub MY::libscan
return undef
if $path =~ /(~|\.bak|_bak)$/ ||
- $path =~ /\..*\.swp$/ ;
+ $path =~ /\..*\.swp$/ ||
+ $path =~ /\B\.svn\b/;
return $path;
}