Hi Alvar,

Alvar Freude wrote:
> But for the problem now reading the file would be a solution -- and now
> it seem to work. In %INC is the correct file name, and also PAR stores
> the correct filename of the module, so it seem to work with this:
> 
> I changed in Getopt::Euclid the following:
> 
>  open my $fh, '<', $caller[1] or croak ...
> 
> into:
> 
>  my $fh;
>  open $fh, '<', $caller[1] or open $fh, '<', $INC{$caller[1]}
>     or croak ...
> 
> 
> But I have too look a little bit deeper. Tomorrow ... ;-)

For the case where you use Getopt::Euclid from a script, you'd have to
replace $0 with something... (The code is just a few lines down from
your change.)

[...]

> changing Getopt::Euclid is for me not a big problem.
> It has a lot of bugs and I fixed some of them locally; it seems, that
> Damian Conway redirects bug reports and patches to /dev/null, but when

This is an entirely different problem. If you're prepared to maintain
the module, you could ask Damian for co-maintenance permissions on
PAUSE. If he doesn't respond at all for a long period of time, ask
[EMAIL PROTECTED]

Best regards,
Steffen

Reply via email to