Subject: | Module::Install 0.58 borked |
Please see http://rt.cpan.org/Ticket/Display.html?id=6558 at bottom:
Quote jpo:
Show quoted text
>Tels,
I think there is a problem with the latest version of Module::Install
included with Image::Info 1.19 - I'm unable to generate the Makefile:
----------
$ perl Makefile.PL
String found where operator expected at Makefile.PL line 89, near "name
'Image-Info'"
(Do you need to predeclare name?)
String found where operator expected at Makefile.PL line 94, near
[snip errors]
----------
Show quoted text>But if I add the following line, which existed in the previous version
of Module::Install, I'm able to generate it.
----------
$ diff -u Image-Info-1.19-orig/inc/Module/Install.pm
Image-Info-1.19/inc/Module/
--- Image-Info-1.19-orig/inc/Module/Install.pm 2006-03-05
09:15:08.000000000 +0000
+++ Image-Info-1.19/inc/Module/Install.pm 2006-03-06
19:18:22.000000000 +0000
@@ -35,6 +35,8 @@
use File::Path ();
use FindBin;
+@inc::Module::Install::ISA = 'Module::Install';
+
sub autoload {
my $self = shift;
my $who = $self->_caller;
----------
Best wishes,
Tels