Refresh ExtUtils::Manifest to version 1.28
authorAndreas Koenig <a.koenig@mind.de>
Fri, 20 Dec 1996 09:08:28 +0000 (21:08 +1200)
committerChip Salzenberg <chip@atlantic.net>
Mon, 23 Dec 1996 00:58:58 +0000 (12:58 +1200)
lib/ExtUtils/Manifest.pm

index e1fcbf01634b400aeb5c987e057460a08abcdc0f..09bdbd55c087bfc54721725464bf5b0501d635a8 100644 (file)
@@ -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<ExtUtils::MakeMaker> which has handy targets for most of the functionality.
 
 =head1 AUTHOR
 
-Andreas Koenig E<lt>F<koenig@franz.ww.TU-Berlin.DE>E<gt>
+Andreas Koenig F<E<lt>koenig@franz.ww.TU-Berlin.DEE<gt>>
 
 =cut