summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Koenig <a.koenig@mind.de>1996-12-20 21:08:28 +1200
committerChip Salzenberg <chip@atlantic.net>1996-12-23 12:58:58 +1200
commit3dee40139c1a854367df29db716f1e572260c3e2 (patch)
tree9806095675eedecb2cb78b81f2b8096f2fe8e750
parent10b2abe6c178f7ef4ddbdbdb040f7c3fcc7a2565 (diff)
downloadperl-3dee40139c1a854367df29db716f1e572260c3e2.tar.gz
Refresh ExtUtils::Manifest to version 1.28
-rw-r--r--lib/ExtUtils/Manifest.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm
index e1fcbf0163..09bdbd55c0 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<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