Without this patch, it installs the CVS directories along with the
other lib files. You could probably merge this test with the one
below it (just always set prune or something) -- I'll leave that
decision upto the perl wizards.
p5p-msgid:
199708272307.RAA13451@austin.bsdi.com
local($depth) = $dir ? "lib/$dir" : "lib";
my $name = $_;
+
+ if ($name eq 'CVS' && -d $name) {
+ $File::Find::prune = 1;
+ return;
+ }
# ignore patch backups and the .exists files.
return if $name =~ m{\.orig$|~$|^\.exists};