summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_auto_install.pm')
-rw-r--r--perl-install/install_steps_auto_install.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm
index e83b34267..2c89ffbad 100644
--- a/perl-install/install_steps_auto_install.pm
+++ b/perl-install/install_steps_auto_install.pm
@@ -25,7 +25,7 @@ sub new {
@ISA = ($interactiveClass, @ISA);
- for (my $f = $o->{steps}{first}; $f; $f = $o->{steps}{$f}{next}) {
+ foreach my $f (@{$o->{orderedSteps}}) {
my $auto_name = member($f, @{$o->{interactiveSteps}}) ? 'noauto' : 'auto';
$o->{steps}{$f}{$auto_name} = 1;
}