Browse Source

Bug 2505 - add strict and warnings to perlmodule_ls

3.2.x
Donovan Jones 14 years ago
committed by Chris Cormack
parent
commit
5647479f70
  1. 9
      misc/perlmodule_ls.pl

9
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";
}

Loading…
Cancel
Save