From: Chris Nehren Date: Sun, 24 Feb 2013 17:28:17 +0000 (-0500) Subject: 1.008008. Update the Changes file, remove some hard tabs. X-Git-Tag: 1.008008^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=commitdiff_plain;h=c50d554b4222fbc7bfa137cc9653389b4303ccb9 1.008008. Update the Changes file, remove some hard tabs. --- diff --git a/Changes b/Changes index 055f4da..92845c9 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,11 @@ Revision history for local::lib +1.008008 2013-02-24 + + - Fix putting arch path in PERL5LIB + - Refactor Win32 path handling out of ensure_dir_structure_for() + - Fix activate_paths when PERL_LOCAL_LIB_ROOT starts with : + - Fix ~/perl5/bin missing in $PATH + 1.008007 2013-02-17 - Back to 1.008004 with Carp fix since subsequent releases were botched - Avoid issue where PERL5LIB Carp is older than local::lib one diff --git a/lib/local/lib.pm b/lib/local/lib.pm index ecc4c2a..d56254a 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -10,7 +10,7 @@ use File::Spec (); use File::Path (); use Config; -our $VERSION = '1.008007'; # 1.8.4 +our $VERSION = '1.008008'; # 1.8.8 our @KNOWN_FLAGS = qw(--self-contained --deactivate --deactivate-all); @@ -236,12 +236,12 @@ sub setup_local_lib_for { $class->setup_env_hash_for($path, $deactivating); my $arch_dir = $Config{archname}; @INC = _uniq( - ( - # Inject $path/$archname for each path in PERL5LIB - map { ( File::Spec->catdir($_, $arch_dir), $_ ) } - split($Config{path_sep}, $ENV{PERL5LIB}) - ), - @INC + ( + # Inject $path/$archname for each path in PERL5LIB + map { ( File::Spec->catdir($_, $arch_dir), $_ ) } + split($Config{path_sep}, $ENV{PERL5LIB}) + ), + @INC ); } } @@ -432,7 +432,7 @@ sub build_activate_environment_vars_for { ), PATH => _env_list_value( { interpolate => $interpolate, exists => 0, empty => '' }, - $class->install_base_bin_path($path), + $class->install_base_bin_path($path), \'PATH', ), )