I upgraded a RH9 machine to Fedora, and now the script I used to use for determing what CPAN modules are on my machine will not report anything but Perl. That is, I know I have many modules on the machine, but the script is not reporting them. I would appreciate any ideas about what I can change to fix things!

Here is the script (I found it elsewhere, and did not write it myself):

#!/usr/bin/perl -w

# This program will tell me what modules I have installed on my machine.

use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
       print "$module -- $version\n";
}


Here is the relevant output:


[EMAIL PROTECTED] perlstuff]$ ./findmodules
Perl -- 5.8.1

However I have many up to date modules installed. I searched Redhat's Bugzilla for "fedora perl modules" but didn't turn up anything there.

Any advice would be appreciated!

Thanks,
Clint

--
Clint <[EMAIL PROTECTED]>


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to