summaryrefslogtreecommitdiff
path: root/utils/perldoc.PL
diff options
context:
space:
mode:
authorMike Guy <mjtg@cam.ac.uk>2000-08-15 13:10:50 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-15 14:01:46 +0000
commita2d48270b47e8bf1cc41c6d1fe80da6206b6cc2c (patch)
tree725b1a99767bdd95a11c2be39855ee17213f87d4 /utils/perldoc.PL
parent017e10814b1e1d25c7506a0b0903863aee5cb0ca (diff)
downloadperl-a2d48270b47e8bf1cc41c6d1fe80da6206b6cc2c.tar.gz
[ID 20000815.005] [PATCH] perldoc not looking in the right place for script pod
Message-Id: <E13OecM-0006nF-00@libra.cus.cam.ac.uk> p4raw-id: //depot/perl@6633
Diffstat (limited to 'utils/perldoc.PL')
-rw-r--r--utils/perldoc.PL4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/perldoc.PL b/utils/perldoc.PL
index 5d136b305c..c7e9970dd4 100644
--- a/utils/perldoc.PL
+++ b/utils/perldoc.PL
@@ -439,9 +439,9 @@ foreach (@pages) {
next;
}
print STDERR "Searching for $_\n" if $opt_v;
- # We must look both in @INC for library modules and in PATH
+ # We must look both in @INC for library modules and in $bindir
# for executables, like h2xs or perldoc itself.
- my @searchdirs = @INC;
+ my @searchdirs = ($bindir, @INC);
if ($opt_F) {
next unless -r;
push @found, $_ if $opt_m or containspod($_);