Subject: | Bundle::CGI::Builder::Complete syntax error |
This is not really important, but if you try to load
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )
Bundle::CGI::Builder::Complete
from Perl, it will die:
Invalid version format (non-numeric data) at /var/tmp/portage/dev-perl/CGI-Builder-1.360.0-r2/work/CGI-Builder-1.36/blib/lib/Bundle/CGI/Builder/Complete.pm line 6, near "; package Bundle::CGI::Builder::Complete
The real issue is the lack of a ";" after the package name, and so it thinks the __END__ is a version in the syntax of the Perl 5.12+ :
package name version;
Syntax.
Inserting the trailing ';' makes it valid perl once again.
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )