diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-02 11:22:43 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-02 11:22:43 +0000 |
commit | aee92da27d05dcab09a64434715b0fb947860fad (patch) | |
tree | c17d79b2ae43c1bb74e521eccaa6ca54cd463fa5 /lib | |
parent | 13236763c18310a590a554a21dbcb4f34d19f479 (diff) | |
download | perl-aee92da27d05dcab09a64434715b0fb947860fad.tar.gz |
Update to Module::CoreList 3.04.
Cleanup corelist manpage.
Remove -w in corelist shebang to avoid spurious warnings.
p4raw-id: //depot/perl@27052
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Module/CoreList.pm | 2 | ||||
-rw-r--r-- | lib/Module/CoreList/bin/corelist | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/lib/Module/CoreList.pm b/lib/Module/CoreList.pm index dc5fdeb2b9..e3ae79549e 100644 --- a/lib/Module/CoreList.pm +++ b/lib/Module/CoreList.pm @@ -1,7 +1,7 @@ package Module::CoreList; use strict; use vars qw/$VERSION %released %patchlevel %version %families/; -$VERSION = '2.03'; +$VERSION = '2.04'; =head1 NAME diff --git a/lib/Module/CoreList/bin/corelist b/lib/Module/CoreList/bin/corelist index 8f9b1dce86..f565da0e0b 100644 --- a/lib/Module/CoreList/bin/corelist +++ b/lib/Module/CoreList/bin/corelist @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl =head1 NAME @@ -10,7 +10,8 @@ See L<Module::CoreList> for one. =head1 SYNOPSIS - corelist [-help] [-a] [-man] [-v [ version ]] [ Modulename [ version ]] ... + corelist [-a] [ Modulename [ version ]] ... + corelist [-v [ version ]] =head1 OPTIONS @@ -39,7 +40,7 @@ See L<Module::CoreList> for one. 5.009002 1.04 5.009003 1.06 -=item -? +=item -? or -help help! help! help! to see more help, try --man. @@ -62,6 +63,7 @@ use Module::CoreList; use Getopt::Long; use Pod::Usage; use strict; +use warnings; my %Opts; |