summaryrefslogtreecommitdiff
path: root/Porting/bisect.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-09-30 10:29:17 +0200
committerNicholas Clark <nick@ccl4.org>2011-09-30 10:29:17 +0200
commitdbcdc176dfaaa83c9a10b03f83ec7fd9d61b4f8a (patch)
tree914ecafb5813127d46cfbcf78530a2a5befa05eb /Porting/bisect.pl
parentbc96a05a30eacd81854d8de97d5e509dc8b7c745 (diff)
downloadperl-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-xPorting/bisect.pl2
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;