diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-09-30 10:29:17 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-09-30 10:29:17 +0200 |
commit | dbcdc176dfaaa83c9a10b03f83ec7fd9d61b4f8a (patch) | |
tree | 914ecafb5813127d46cfbcf78530a2a5befa05eb /Porting/bisect.pl | |
parent | bc96a05a30eacd81854d8de97d5e509dc8b7c745 (diff) | |
download | perl-dbcdc176dfaaa83c9a10b03f83ec7fd9d61b4f8a.tar.gz |
In bisect-runner.pl, don't close Configure's STDIN for 5.004
Before commit dfe9444ca7881e71, Configure would refuse to run if STDIN was
not a tty. With that commit, the tty requirement was dropped for -de and -dE.
Change the default start in bisect.pl from perl-5.005 to perl-5.004.
Diffstat (limited to 'Porting/bisect.pl')
-rwxr-xr-x | Porting/bisect.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/bisect.pl b/Porting/bisect.pl index 2e2826ce1f..929c854677 100755 --- a/Porting/bisect.pl +++ b/Porting/bisect.pl @@ -25,7 +25,7 @@ unless(GetOptions(\%options, my $start = delete $options{start}; # Currently the earliest version that the runner can build -$start = 'perl-5.005' unless defined $start; +$start = 'perl-5.004' unless defined $start; my $end = delete $options{end}; $end = 'blead' unless defined $end; |