Change 34591 by [EMAIL PROTECTED] on 2008/10/25 15:23:48
Upgrade to ExtUtils::Manifest 1.55.
Affected files ...
... //depot/perl/lib/ExtUtils/Manifest.pm#51 edit
... //depot/perl/lib/ExtUtils/t/Manifest.t#28 edit
Differences ...
==== //depot/perl/lib/ExtUtils/Manifest.pm#51 (text) ====
Index: perl/lib/ExtUtils/Manifest.pm
--- perl/lib/ExtUtils/Manifest.pm#50~34193~ 2008-08-10 09:58:49.000000000
-0700
+++ perl/lib/ExtUtils/Manifest.pm 2008-10-25 08:23:48.000000000 -0700
@@ -13,7 +13,7 @@
$Is_MacOS $Is_VMS
$Debug $Verbose $Quiet $MANIFEST $DEFAULT_MSKIP);
-$VERSION = '1.54';
+$VERSION = '1.55';
@ISA=('Exporter');
@EXPORT_OK = qw(mkmanifest
manicheck filecheck fullcheck skipcheck
==== //depot/perl/lib/ExtUtils/t/Manifest.t#28 (text) ====
Index: perl/lib/ExtUtils/t/Manifest.t
--- perl/lib/ExtUtils/t/Manifest.t#27~34193~ 2008-08-10 09:58:49.000000000
-0700
+++ perl/lib/ExtUtils/t/Manifest.t 2008-10-25 08:23:48.000000000 -0700
@@ -35,8 +35,9 @@
1 while unlink $file; # or else we'll get multiple versions on VMS
open( T, '> '.$file) or return;
print T $data;
- ++$Files{$file};
close T;
+ return 0 unless -e $file; # exists under the name we gave it ?
+ ++$Files{$file};
}
sub read_manifest {
End of Patch.