From: Graham Knop Date: Sat, 21 Sep 2013 11:07:05 +0000 (-0400) Subject: extract installer option generation to its own method X-Git-Tag: v2.000_000~49 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c4f03552f81d2ed246211d6480dc6e447cc56528;p=p5sagit%2Flocal-lib.git extract installer option generation to its own method --- diff --git a/lib/local/lib.pm b/lib/local/lib.pm index f68cc76..cc91aea 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -430,8 +430,7 @@ sub build_activate_environment_vars_for { $path, \'PERL_LOCAL_LIB_ROOT', ), - PERL_MB_OPT => "--install_base " . _mb_escape_path($path), - PERL_MM_OPT => "INSTALL_BASE=" . _mm_escape_path($path), + $class->installer_options_for($path), PERL5LIB => _env_list_value( { interpolate => $interpolate, exists => 0, empty => '' }, @@ -518,13 +517,21 @@ sub build_deactivate_environment_vars_for { # correspond with the new top of stack. if ($active_lls[0] eq $path) { my $new_top = $active_lls[1]; - $env{PERL_MB_OPT} = defined($new_top) ? "--install_base "._mb_escape_path($new_top) : undef; - $env{PERL_MM_OPT} = defined($new_top) ? "INSTALL_BASE="._mm_escape_path($new_top) : undef; + my %opts = $class->installer_options_for($new_top); + $env{keys %opts} = values %opts; } return %env; } +sub installer_options_for { + my ($class, $path) = @_; + return ( + PERL_MM_OPT => defined $path ? "INSTALL_BASE="._mm_escape_path($path) : undef, + PERL_MB_OPT => defined $path ? "--install_base "._mb_escape_path($path) : undef, + ) +} + sub build_deact_all_environment_vars_for { my ($class, $path, $interpolate) = @_;