1.008008. Update the Changes file, remove some hard tabs. 1.008008
Chris Nehren [Sun, 24 Feb 2013 17:28:17 +0000 (12:28 -0500)]
Changes
lib/local/lib.pm

diff --git a/Changes b/Changes
index 055f4da..92845c9 100644 (file)
--- 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
index ecc4c2a..d56254a 100644 (file)
@@ -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',
             ),
   )