diff options
Diffstat (limited to 'Master/tlpkg/bin/tlpdb2list')
-rwxr-xr-x | Master/tlpkg/bin/tlpdb2list | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tlpdb2list b/Master/tlpkg/bin/tlpdb2list index 2904b534103..1d4082bf994 100755 --- a/Master/tlpkg/bin/tlpdb2list +++ b/Master/tlpkg/bin/tlpdb2list @@ -22,14 +22,12 @@ use File::Path; my $opt_outputdir = "new-list"; our $opt_debug = 0; -my $man = 0; my $help = 0; GetOptions("outputdir=s" => \$opt_outputdir, - "debug!", "help|?" => \$help, "man" => \$man) or pod2usage(2); + "debug!", "help|?" => \$help) or pod2usage(1); -pod2usage(1) if $help; -pod2usage(-exitstatus => 0, -verbose => 2) if $man; +pod2usage(-exitstatus => 0, -verbose => 2) if $help; pod2usage(1) if ($#ARGV<0); if (! -d $opt_outputdir) { @@ -61,7 +59,7 @@ C<./new-list>. =back -The standard options C<-help>, C<-debug>, and C<-man> are also accepted. +The standard options C<-help> and C<-debug> are also accepted. See the tlpfiles documentation for details. =head1 DESCRIPTION |