diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-10-15 14:35:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-10-15 14:35:58 +0000 |
commit | 39def6996941bb414d0d6ac9d50ba49933869017 (patch) | |
tree | b5caa7bac29e28a3a12f94e4d9eae22d4b642b4a /perl-install/install2.pm | |
parent | 4eb12bd3c2b072e0a8b1b22422104b8d71f245d1 (diff) | |
download | drakx-39def6996941bb414d0d6ac9d50ba49933869017.tar drakx-39def6996941bb414d0d6ac9d50ba49933869017.tar.gz drakx-39def6996941bb414d0d6ac9d50ba49933869017.tar.bz2 drakx-39def6996941bb414d0d6ac9d50ba49933869017.tar.xz drakx-39def6996941bb414d0d6ac9d50ba49933869017.zip |
pass $o to getNextStep
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 6bbfb514b..ed179a6ec 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -293,7 +293,7 @@ sub configureX { #------------------------------------------------------------------------------ sub exitInstall { my ($_clicked, $_xent_number, $auto) = @_; - installStepsCall($o, $auto, 'exitInstall', getNextStep() eq 'exitInstall'); + installStepsCall($o, $auto, 'exitInstall', getNextStep($::o) eq 'exitInstall'); } @@ -602,7 +602,7 @@ sub main { #-the main cycle my $clicked = 0; - MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep()) { + MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep($o)) { $o->{steps}{$o->{step}}{entered}++; $o->enteringStep($o->{step}); eval { |