On Thu, Mar 14, 2002 at 11:38:38AM +0100, Wim Verhaegen wrote:
> > How do you return the name of perl in your module's Makefile.PL?
>
> use Config;
> $perl = $Config{perlpath};
This is very wrong. This is what libwww is using; as a result, you
cannot test libwww with uninstalled Perl.
*At* least use
(-x $^X) ? $^X : $Config{perlpath};
Ilya
