Skip to content

Commit

Permalink
Undo private patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Chip Salzenberg authored and Chip Salzenberg committed Apr 24, 1997
1 parent 26db47c commit 9cb0349
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions installperl
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,6 @@ sub installlib {

$name = "$dir/$name" if $dir ne '';

# ignore Chip-style patch backups.
return if grep(/^P\d+$/, split(m{/+}, $name));

my $installlib = $installprivlib;
if ($dir =~ /^auto/ ||
($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1})) {
Expand Down
2 changes: 0 additions & 2 deletions lib/ExtUtils/Install.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ sub install {
opendir DIR, $source_dir_or_file or next;
for (readdir DIR) {
next if $_ eq "." || $_ eq ".." || $_ eq ".exists";
next if /^P\d+$/ && -d "$source_dir_or_file/$_"; # no Chip bk's
if (-w $hash{$source_dir_or_file} || mkpath($hash{$source_dir_or_file})) {
last;
} else {
Expand Down Expand Up @@ -89,7 +88,6 @@ sub install {
$atime,$mtime,$ctime,$blksize,$blocks) = stat;
return unless -f _;
return if $_ eq ".exists";
return if /\bP\d+\b/; # no Chip-style backups
my $targetdir = $MY->catdir($hash{$source},$File::Find::dir);
my $targetfile = $MY->catfile($targetdir,$_);

Expand Down

0 comments on commit 9cb0349

Please sign in to comment.