Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Archive-Any CPAN distribution.

Report information
The Basics
Id: 93598
Status: resolved
Priority: 0/
Queue: Archive-Any

People
Owner: Nobody in particular
Requestors: vlasenko [...] imath.kiev.ua
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.0941
Fixed in: (no value)



Subject: Global symbol "@ISA" requires explicit package name at /usr/src/tmp/perl-Archive-Any-buildroot/usr/share/perl5/Archive/Any/Tar.pm line 9
proposed patch --- Archive-Any-0.0941/lib/Archive/Any/Tar.pm 2013-11-07 02:39:00.000000000 +0000 +++ Archive-Any-0.0941/lib/Archive/Any/Tar.pm 2014-03-07 08:58:13.037455717 +0000 @@ -6,7 +6,7 @@ use strict; require Archive::Any; -@ISA = qw(Archive::Any); +our @ISA = qw(Archive::Any); use Archive::Tar; use Cwd; --- Archive-Any-0.0941/lib/Archive/Any/Zip.pm 2013-11-07 02:39:00.000000000 +0000 +++ Archive-Any-0.0941/lib/Archive/Any/Zip.pm 2014-03-07 09:00:24.782185113 +0000 @@ -6,7 +6,7 @@ use strict; require Archive::Any; -@ISA = qw(Archive::Any); +our @ISA = qw(Archive::Any); use Archive::Zip qw(:ERROR_CODES); use Cwd;