diff options
author | Karen Etheridge <ether@cpan.org> | 2014-07-14 17:25:46 -0700 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2014-07-15 18:42:44 -0400 |
commit | a6f8bc47159a176b40a20c874fc545270a452af8 (patch) | |
tree | 9c350bdd0924aaa6e35ff8d7f2fe5f09ba096a58 /dist | |
parent | 7f1e728cd3c370defc14408131b34c6cf7273254 (diff) | |
download | perl-a6f8bc47159a176b40a20c874fc545270a452af8.tar.gz |
use just the import sub from Exporter
Diffstat (limited to 'dist')
-rw-r--r-- | dist/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm b/dist/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm index b297b1486d..165a15cc5a 100644 --- a/dist/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm +++ b/dist/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm @@ -10,8 +10,9 @@ use Carp; use strict; use warnings; +use Exporter 5.57 'import'; + our $VERSION = '1.64'; -our @ISA=('Exporter'); our @EXPORT_OK = qw(mkmanifest manicheck filecheck fullcheck skipcheck manifind maniread manicopy maniadd |