Name
perl-localenv - Set environment to use a local library of Perl modules
Synopsis
use English qw( -no_match_vars );
use FindBin qw( $Bin );
use File::Spec;
BEGIN {
my $bind = $Bin; $bind =~ m{ \A ([^\$%&\*;<>\`|]+) \z }mx and $bind = $1;
my $path = File::Spec->catfile( $bind, 'coverage-localenv' );
-f $path and (do $path or die $EVAL_ERROR || "Path ${path} not done\n");
}
Description
Set environment to use a local library of Perl modules
Required Arguments
None
Options
None
Diagnostics
Prints errors to stderr
Exit Status
None
Configuration
Edit the $LOCAL_LIB variable definition if a directory other than local is required
Dependencies
None
Incompatibilities
None
Bugs and limitations
Send reports to address below
Author
[% author %], <[% author_email %]>
License and copyright
Copyright (c) [% copyright_year %] [% copyright %]
This is free software; you can redistribute it and/or modify it under the same terms as Perl itself.