On Mon, 14 Aug 2000, Ed James, 410-295-1919, [EMAIL PROTECTED] wrote:
> Hello,
>
> I am looking for a way to list all the installed modules on my Perl tree.
> I tried to use ExtUtils::Installed and got:
>
> $ perl list_installed_modules.pl
> Can't cd to perl_root:[lib.VMS_AXP.]: no such device or address
That looks like a VMS specific bug in ExtUtils::Installed.pm
> $
>
> Maybe a VMS vs. Unix file specification problem?
Probably. A perlbug ought to be filed.
> Does anyone have a better way to list the Perl installed library?
I've used `perldoc perlocal` (not perldoc perllocale).
Also, if you upgrade to 5.6.0 try:
perl -"V:extensions"
perl -"V:dynamic_ext" ! lists core modules that came with perl
perl -"V:static_ext" ! lists nothing
Peter Prymmer