From e73f1bb1e10140c58f3cb9110c5af78a43ec9515 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Mon, 11 Oct 1999 18:56:00 +0000 Subject: *** empty log message *** --- perl-install/install_any.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'perl-install/install_any.pm') diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 8b5c6dc25..e46428db5 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -56,11 +56,8 @@ sub kernelVersion { sub getNextStep { - my ($s, $old); - for ($s = $::o->{steps}{first}; $::o->{steps}{$s}{done}; $s = $::o->{steps}{$s}{next}) { - $::o->{steps}{$s}{reachable} or return $old; - $old = $s; - } + my ($s) = $::o->{steps}{first}; + $s = $::o->{steps}{$s}{next} while $::o->{steps}{$s}{done} || !$::o->{steps}{$s}{reachable}; $s; } -- cgit v1.2.1