diff options
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/Compress/Zlib/Makefile.PL | 4 |
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; } |