Skip to content

Commit

Permalink
Merge 743ac71 into 3bbdeca
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Aug 24, 2021
2 parents 3bbdeca + 743ac71 commit 8e2ccec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions installhtml
Expand Up @@ -2,6 +2,7 @@

# This file should really be extracted from a .PL file

$| = 1;
use strict;
use Config; # for config options in the makefile
use File::Path qw(remove_tree);
Expand Down Expand Up @@ -45,7 +46,7 @@ Default is current directory.
=item B<--podpath> POD search path
The list of directories to search for .pod and .pm files to be converted.
Default is 'podroot/.'.
Default is 'podroot/lib'.
=item B<--recurse> recurse on subdirectories
Expand Down Expand Up @@ -121,7 +122,7 @@ Usage: $0 --help --podpath=<name>:...:<name> --podroot=<name>
--help - this message
--podpath - colon-separated list of directories containing .pod and
.pm files to be converted (. by default).
.pm files to be converted ('lib/' by default).
--podroot - filesystem base directory from which all relative paths in
podpath stem (default is .).
--htmldir - directory to store resulting html files in relative
Expand All @@ -146,7 +147,7 @@ END_OF_USAGE
my (@podpath, $podroot, $htmldir, $htmlroot, $recurse, @splithead,
@splititem, $splitpod, $verbose, $pod2html, @ignore);

@podpath = ( "." ); # colon-separated list of directories containing .pod
@podpath = ( "lib" ); # colon-separated list of directories containing .pod
# and .pm files to be converted.
$podroot = "."; # assume the pods we want are here
$htmldir = ""; # nothing for now...
Expand Down

0 comments on commit 8e2ccec

Please sign in to comment.