diff options
author | Yves Orton <demerphq@gmail.com> | 2007-03-22 20:42:54 +0100 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-03-23 01:54:54 +0000 |
commit | e1b7525f25b00c7b7ff5253da49c0d9cec7188fe (patch) | |
tree | 4ed5f2ad3def3f3c6210b746a6c9e0b940d1ae6a /installhtml | |
parent | 9b134129b37f0ac68efe970f543cccef309944c6 (diff) | |
download | perl-e1b7525f25b00c7b7ff5253da49c0d9cec7188fe.tar.gz |
fix instalhtml and Pod::HTML issues.
Message-ID: <9b18b3110703221142g4955362atffee33d05e30bd27@mail.gmail.com>
Just the changes to installhtml and Pod::HTML in this patch.
p4raw-id: //depot/perl@30708
Diffstat (limited to 'installhtml')
-rwxr-xr-x | installhtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/installhtml b/installhtml index e7ed71382c..0761dfb31e 100755 --- a/installhtml +++ b/installhtml @@ -43,7 +43,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/.'. =item B<--recurse> recurse on subdirectories @@ -58,7 +58,7 @@ be a path relative to the filesystem, not the resulting URL. =item B<--htmlroot> URL base directory The base directory which all resulting HTML files will be visible at in -a URL. The default is `/'. +a URL. The default is '/'. =item B<--splithead> POD files to split on =head directive @@ -75,7 +75,7 @@ split, rather it invokes I<splitpod> to do the dirty work. As with =item B<--splitpod> Directory containing the splitpod program -The directory containing the splitpod program. The default is `podroot/pod'. +The directory containing the splitpod program. The default is 'podroot/pod'. =item B<--libpods> library PODs for LE<lt>E<gt> links @@ -556,8 +556,8 @@ sub installdir { # check if a .pm files exists too if (grep($_ eq $pod, @pmlist)) { - print "$0: Warning both `$podroot/$pod.pod' and " - . "`$podroot/$pod.pm' exist, using pod\n"; + print "$0: Warning both '$podroot/$pod.pod' and " + . "'$podroot/$pod.pm' exist, using pod\n"; push(@ignore, "$pod.pm"); } runpod2html("$pod.pod", $doindex); |