]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Preserve the PATH environment variable when running a sub-perl on cygwin
authorVincent Pit <vince@profvince.com>
Sun, 23 Oct 2011 14:55:07 +0000 (16:55 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 23 Oct 2011 14:55:07 +0000 (16:55 +0200)
t/17-ctl.t

index ca22761333c3a5e5959aaddd4d6fb50a1af1d2d0..31bab6668cfdd5b530cde71542f5d86994f215bc 100644 (file)
@@ -216,9 +216,10 @@ like $@, expect('tomato', undef, "\nBEGIN.*"),
 sub run_perl {
  my $code = shift;
 
- my $SystemRoot   = $ENV{SystemRoot};
+ my ($SystemRoot, $PATH) = @ENV{qw<SystemRoot PATH>};
  local %ENV;
  $ENV{SystemRoot} = $SystemRoot if $^O eq 'MSWin32' and defined $SystemRoot;
+ $ENV{PATH}       = $PATH       if $^O eq 'cygwin'  and defined $PATH;
 
  system { $^X } $^X, '-T', map("-I$_", @INC), '-e', $code;
 }