projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
30c5452
)
Documentation patch to the FindBin module
Gisle Aas [Fri, 20 Sep 1996 13:04:04 +0000 (15:04 +0200)]
lib/FindBin.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/FindBin.pm
b/lib/FindBin.pm
index
242ea5f
..
45d9e33
100644
(file)
--- a/
lib/FindBin.pm
+++ b/
lib/FindBin.pm
@@
-11,12
+11,12
@@
FindBin - Locate directory of original perl script
=head1 SYNOPSIS
use FindBin;
- BEGIN { unshift(@INC,"$FindBin::Bin/../lib") }
+ use lib "$FindBin::Bin/../lib";
or
use FindBin qw($Bin);
- BEGIN { unshift(@INC,"$Bin/../lib") }
+ use lib "$Bin/../lib";
=head1 DESCRIPTION