From: Andreas Koenig Date: Fri, 20 Dec 1996 09:08:28 +0000 (+1200) Subject: Refresh ExtUtils::Manifest to version 1.28 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3dee40139c1a854367df29db716f1e572260c3e2;p=p5sagit%2Fp5-mst-13.2.git Refresh ExtUtils::Manifest to version 1.28 --- diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm index e1fcbf0..09bdbd5 100644 --- a/lib/ExtUtils/Manifest.pm +++ b/lib/ExtUtils/Manifest.pm @@ -17,7 +17,7 @@ $Debug = 0; $Verbose = 1; $Is_VMS = $^O eq 'VMS'; -$VERSION = substr(q$Revision: 1.27 $,10,4); +$VERSION = "1.28"; $Quiet = 0; @@ -25,7 +25,6 @@ $MANIFEST = 'MANIFEST'; # Really cool fix from Ilya :) unless (defined $Config{d_link}) { - local($^W) = 0; # avoid sub redefined message *ln = \&cp; } @@ -249,7 +248,7 @@ sub best { if (-l $srcFile) { cp($srcFile, $dstFile); } else { - ln($srcFile, $dstFile); + ln($srcFile, $dstFile) or cp($srcFile, $dstFile); } } @@ -394,6 +393,6 @@ L which has handy targets for most of the functionality. =head1 AUTHOR -Andreas Koenig EFE +Andreas Koenig Fkoenig@franz.ww.TU-Berlin.DEE> =cut