This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78ff9ed
)
Trivial patch to make ExtUtils::Install more -w clean
author
Tim Bunce
<Tim.Bunce@ig.co.uk>
Mon, 24 Feb 1997 16:05:17 +0000
(16:05 +0000)
committer
Chip Salzenberg
<chip@atlantic.net>
Fri, 21 Feb 1997 14:41:53 +0000
(
02:41
+1200)
p5p-msgid: <
9702241605
.AA17436@toad.ig.co.uk>
lib/ExtUtils/Install.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/Install.pm
b/lib/ExtUtils/Install.pm
index
c7eb8b4
..
a88bd99
100644
(file)
--- a/
lib/ExtUtils/Install.pm
+++ b/
lib/ExtUtils/Install.pm
@@
-12,7
+12,7
@@
use vars qw(@ISA @EXPORT $VERSION);
$Is_VMS = $^O eq 'VMS';
my $splitchar = $^O eq 'VMS' ? '|' : $^O eq 'os2' ? ';' : ':';
-my @PERL_ENV_LIB = split $splitchar, defined $ENV{'PERL5LIB'} ? $ENV{'PERL5LIB'} : $ENV{'PERLLIB'};
+my @PERL_ENV_LIB = split $splitchar, defined $ENV{'PERL5LIB'} ? $ENV{'PERL5LIB'} : $ENV{'PERLLIB'}
|| ''
;
my $Inc_uninstall_warn_handler;
#use vars qw( @EXPORT @ISA $Is_VMS );