[guest - Mon Dec 15 19:25:57 2003]:
The attached patch will take care of this.
--- lib/ExtUtils/Command.pm;-0 Sat Nov 29 08:28:08 2003
+++ lib/ExtUtils/Command.pm Sat Dec 20 10:50:04 2003
@@ -109,9 +109,10 @@
foreach (@ARGV)
{
next unless -f $_;
- next if unlink($_);
chmod(0777,$_);
- next if unlink($_);
+ my $delete_count = 0;
+ $delete_count++ while unlink($_);
+ next unless $delete_count;
carp "Cannot delete $_:$!";
}
}