From: Mike Guy Date: Sun, 10 Jun 2001 22:38:05 +0000 (+0000) Subject: ExtUtils::Manifest not -w clean X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c4968b8c1fd33346b57653dcfcc0f9a34387a828;p=p5sagit%2Fp5-mst-13.2.git ExtUtils::Manifest not -w clean Reply-To: mjtg@cam.ac.uk Message-Id: p4raw-id: //depot/perl@10508 --- diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm index 244214a..4e38774 100644 --- a/lib/ExtUtils/Manifest.pm +++ b/lib/ExtUtils/Manifest.pm @@ -121,7 +121,7 @@ sub _manicheck { } warn "Debug: manicheck checking from disk $file\n" if $Debug; unless ( exists $read->{$file} ) { - my $canon = "\t" . _unmacify($file) if $Is_MacOS; + my $canon = $Is_MacOS ? "\t" . _unmacify($file) : ''; warn "Not in $MANIFEST: $file$canon\n" unless $Quiet; push @missentry, $file; }