Skip to content

Commit

Permalink
Don't adjust path for msys TAP tests after 9.6
Browse files Browse the repository at this point in the history
Starting in 10 configure works out where prove is, and on msys we can
tell it in the config_env section of the config file with
PROVE=>'/bin/prove'
  • Loading branch information
adunstan committed Aug 8, 2017
1 parent 873fdd3 commit de6d5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_build.pl
Expand Up @@ -1648,7 +1648,7 @@ sub run_tap_test

# fix path temporarily on msys
my $save_path = $ENV{PATH};
if ($Config{osname} eq 'msys')
if ($Config{osname} eq 'msys' && $branch ne 'HEAD' && $branch lt 'REL_10')
{
my $perlpathdir = dirname($Config{perlpath});
$ENV{PATH} = "$perlpathdir:$ENV{PATH}";
Expand Down

0 comments on commit de6d5b6

Please sign in to comment.