committed by
Chris Cormack
1 changed files with 5 additions and 4 deletions
@ -1,11 +1,12 @@ |
|||
#!/usr/bin/perl |
|||
|
|||
#use strict; |
|||
#use warnings; FIXME - Bug 2505 |
|||
use strict; |
|||
use warnings; |
|||
|
|||
use ExtUtils::Installed; |
|||
|
|||
my $instmod = ExtUtils::Installed->new(); |
|||
foreach my $module ($instmod->modules()) { |
|||
my $version = $instmod->version($module) || "???"; |
|||
print "$module -- $version\n"; |
|||
my $version = $instmod->version($module) || "???"; |
|||
print "$module -- $version\n"; |
|||
} |
|||
|
Loading…
Reference in new issue