diff options
author | Anton Berezin <tobez@tobez.org> | 2002-08-21 01:44:25 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-08-25 14:02:47 +0000 |
commit | 9a450c75feab160f2fe6caee628eae740f56a669 (patch) | |
tree | 657be6d64e2f58126afde0a9ae42596157720e4f /lib | |
parent | 602c60d11a4aeaf1eae806f413fdd1d20c9e13da (diff) | |
download | perl-9a450c75feab160f2fe6caee628eae740f56a669.tar.gz |
fix lib.pm's import() to accept readonly parameters
Message-ID: <20020820214425.GG16178@heechee.tobez.org>
p4raw-id: //depot/perl@17768
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.t | 5 | ||||
-rw-r--r-- | lib/lib_pm.PL | 19 |
2 files changed, 14 insertions, 10 deletions
@@ -6,7 +6,7 @@ BEGIN { @OrigINC = @INC; } -use Test::More tests => 12; +use Test::More tests => 13; use Config; use File::Spec; use File::Path; @@ -81,6 +81,9 @@ BEGIN { no lib $Lib_Dir; +unlike( do { eval 'use lib $Config{installsitelib};'; $@ || '' }, + qr/::Config is read-only/, 'lib handles readonly stuff' ); + BEGIN { is( grep(/stuff/, @INC), 0, 'no lib' ); ok( !do 'Yup.pm', ' do() effected' ); diff --git a/lib/lib_pm.PL b/lib/lib_pm.PL index 6c9ab05bc0..f6bb665dec 100644 --- a/lib/lib_pm.PL +++ b/lib/lib_pm.PL @@ -71,30 +71,31 @@ sub import { my %names; foreach (reverse @_) { - if ($_ eq '') { + my $path = $_; # we'll be modifying it, so break the alias + if ($path eq '') { require Carp; Carp::carp("Empty compile time value given to use lib"); } - local $_ = _nativize($_); + $path = _nativize($path); - if (-e && ! -d _) { + if (-e $path && ! -d _) { require Carp; Carp::carp("Parameter to use lib must be directory, not file"); } - unshift(@INC, $_); + unshift(@INC, $path); # Add any previous version directories we found at configure time foreach my $incver (@inc_version_list) { my $dir = $Is_MacOS - ? File::Spec->catdir( $_, $incver ) - : "$_/$incver"; + ? File::Spec->catdir( $path, $incver ) + : "$path/$incver"; unshift(@INC, $dir) if -d $dir; } - # Put a corresponding archlib directory in front of $_ if it - # looks like $_ has an archlib directory below it. + # Put a corresponding archlib directory in front of $path if it + # looks like $path has an archlib directory below it. my($arch_auto_dir, $arch_dir, $version_dir, $version_arch_dir) - = _get_dirs($_); + = _get_dirs($path); unshift(@INC, $arch_dir) if -d $arch_auto_dir; unshift(@INC, $version_dir) if -d $version_dir; unshift(@INC, $version_arch_dir) if -d $version_arch_dir; |