X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=misc%2Fperlmodule_ls.pl;h=d381b6ee629e4e62fc3effd8e25d9c19a79990b5;hb=568f32606c2c9c247b2b477193a2d6814f738fa6;hp=6ffcc528fd3f3c8634b00fa88bcec8067ab77321;hpb=5e0b850d49f452ffbca41f47dc190d6d4f2323c7;p=koha.git diff --git a/misc/perlmodule_ls.pl b/misc/perlmodule_ls.pl index 6ffcc528fd..d381b6ee62 100755 --- a/misc/perlmodule_ls.pl +++ b/misc/perlmodule_ls.pl @@ -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"; }