summaryrefslogtreecommitdiff
path: root/dist/ExtUtils-Install
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-08-09 06:30:00 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-08-09 08:34:28 -0700
commit755104b1eda30228147f87b8af9b5cef37d565ff (patch)
tree82b77eb15cb5e5be954227d428e8cbfd4c162523 /dist/ExtUtils-Install
parentb877fea2fc789be8bb0df2db93ffe5c1ecb4fb33 (diff)
downloadperl-755104b1eda30228147f87b8af9b5cef37d565ff.tar.gz
Keep verbatim pod in ExtUtils::Installed within 80 cols
Diffstat (limited to 'dist/ExtUtils-Install')
-rw-r--r--dist/ExtUtils-Install/lib/ExtUtils/Installed.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/dist/ExtUtils-Install/lib/ExtUtils/Installed.pm b/dist/ExtUtils-Install/lib/ExtUtils/Installed.pm
index afc52a5188..b4b7f7580f 100644
--- a/dist/ExtUtils-Install/lib/ExtUtils/Installed.pm
+++ b/dist/ExtUtils-Install/lib/ExtUtils/Installed.pm
@@ -383,7 +383,8 @@ the configuration information for a separate perl installation and
pass that in.
my $yoda_cfg = get_fake_config('yoda');
- my $yoda_inst = ExtUtils::Installed->new(config_override=>$yoda_cfg);
+ my $yoda_inst =
+ ExtUtils::Installed->new(config_override=>$yoda_cfg);
Similarly, the parameter C<inc_override> may be a reference to an
array which is used in place of the default module search paths
@@ -399,7 +400,8 @@ you will want to set both together.
The parameter C<extra_libs> can be used to specify B<additional> paths to
search for installed modules. For instance
- my $installed = ExtUtils::Installed->new(extra_libs=>["/my/lib/path"]);
+ my $installed =
+ ExtUtils::Installed->new(extra_libs=>["/my/lib/path"]);
This should only be necessary if C</my/lib/path> is not in PERL5LIB.