diff options
Diffstat (limited to 'perl-install/steps.pm')
-rw-r--r-- | perl-install/steps.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/steps.pm b/perl-install/steps.pm index 4aa8a09a9..82eb8d8a6 100644 --- a/perl-install/steps.pm +++ b/perl-install/steps.pm @@ -34,7 +34,6 @@ use common; ); for (my $i = 0; $i < @installSteps; $i += 2) { my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] }; - $h{next} = $installSteps[$i + 2]; $h{entered} = 0; $h{onError} = $installSteps[$i + 2 * $h{onError}]; $h{reachable} = !$h{needs}; |