summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/Manifest.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-02 07:53:51 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-02 07:53:51 +0000
commitdb376a245d40f9f81e37632708a9ad2cfc67ef6a (patch)
tree8c6efaa9d96c8eab8c80c68fe4e15d92aec8f7b4 /lib/ExtUtils/Manifest.pm
parent65e1a3a11dd767e7393f37a7bd811ce587d64985 (diff)
downloadperl-db376a245d40f9f81e37632708a9ad2cfc67ef6a.tar.gz
use warnings rather than fiddling with $^W (from Paul Marquess)
p4raw-id: //depot/perl@4954
Diffstat (limited to 'lib/ExtUtils/Manifest.pm')
-rw-r--r--lib/ExtUtils/Manifest.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/Manifest.pm b/lib/ExtUtils/Manifest.pm
index 58c91bc44b..8bb3fc8ebd 100644
--- a/lib/ExtUtils/Manifest.pm
+++ b/lib/ExtUtils/Manifest.pm
@@ -25,7 +25,7 @@ $MANIFEST = 'MANIFEST';
# Really cool fix from Ilya :)
unless (defined $Config{d_link}) {
- local $^W;
+ no warnings;
*ln = \&cp;
}