summaryrefslogtreecommitdiffstats
path: root/perl-install/steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-10-15 14:23:53 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-10-15 14:23:53 +0000
commit4bb042efd8ca9b9cf5f40e66187d9708877a79a5 (patch)
treed31249d416edb76dfe71cef533f062d63a2b8290 /perl-install/steps.pm
parent1aec68c262a3ba595d7153f15d0419f5b3083394 (diff)
downloaddrakx-backup-do-not-use-4bb042efd8ca9b9cf5f40e66187d9708877a79a5.tar
drakx-backup-do-not-use-4bb042efd8ca9b9cf5f40e66187d9708877a79a5.tar.gz
drakx-backup-do-not-use-4bb042efd8ca9b9cf5f40e66187d9708877a79a5.tar.bz2
drakx-backup-do-not-use-4bb042efd8ca9b9cf5f40e66187d9708877a79a5.tar.xz
drakx-backup-do-not-use-4bb042efd8ca9b9cf5f40e66187d9708877a79a5.zip
drop field {next} in {steps} since it is duplicated in orderedSteps
=> it allows simpler modification of orderedSteps (as already done in upgrade) for mandrake move
Diffstat (limited to 'perl-install/steps.pm')
-rw-r--r--perl-install/steps.pm1
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};