diff options
author | Karl Berry <karl@freefriends.org> | 2008-07-17 17:29:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-07-17 17:29:42 +0000 |
commit | 55b6390d0fab9ddc5918cb45f0ada0fb4824e201 (patch) | |
tree | 2dc3791ac2175787d642abc1f93666ff570a70b2 /Master/tlpkg/bin/check-file-coverage | |
parent | 36b036f5cddec38eddfea2241e9acff2247e60de (diff) |
get man pages in pdf
git-svn-id: svn://tug.org/texlive/trunk@9633 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/check-file-coverage')
-rwxr-xr-x | Master/tlpkg/bin/check-file-coverage | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/check-file-coverage b/Master/tlpkg/bin/check-file-coverage index facc6ab0efc..4aa8b07b5d6 100755 --- a/Master/tlpkg/bin/check-file-coverage +++ b/Master/tlpkg/bin/check-file-coverage @@ -35,16 +35,15 @@ my @IgnorePatterns = qw! tlpkg/texlive.tlpdb !; -TeXLive::TLUtils::process_logging_options(); - chomp (my $opt_master = `cd $::mydir/../.. && pwd`); -my $help = 0; +my $opt_help = 0; +TeXLive::TLUtils::process_logging_options(); GetOptions( "master=s" => \$opt_master, # location of the TL tree - "help|?" => \$help) or pod2usage(1); + "help|?" => \$opt_help) or pod2usage(1); -pod2usage(-exitstatus => 0, -verbose => 2) if $help; +pod2usage ('-exitstatus' => 0, '-verbose' => 2) if $opt_help; exit (&main ()); |