diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-10 16:04:37 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-10 16:04:37 +0000 |
commit | 44d448e32fcc9a3180ae5e55354ef7abf18eed1e (patch) | |
tree | d2db591ccecb4564a672e9706333e8e72216bfa3 | |
parent | 1db729772f0612c1810956632318cd79e190651b (diff) | |
download | drakx-44d448e32fcc9a3180ae5e55354ef7abf18eed1e.tar drakx-44d448e32fcc9a3180ae5e55354ef7abf18eed1e.tar.gz drakx-44d448e32fcc9a3180ae5e55354ef7abf18eed1e.tar.bz2 drakx-44d448e32fcc9a3180ae5e55354ef7abf18eed1e.tar.xz drakx-44d448e32fcc9a3180ae5e55354ef7abf18eed1e.zip |
call "country" and "keyboard" steps after "timezone" (#23303)
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rwxr-xr-x | perl-install/standalone/finish-install | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index a4f34602b..171f4fa35 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -7,6 +7,7 @@ o always ask timezone (#23303, #42368) o extract a "country" step out of the "language" one o guess country from timezone when possible (#23303) + o call "country" and "keyboard" steps after "timezone" (#23303) o behave nicely when a window manager is running (for debugging) Version 11.38 - 8 September 2008 diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index b7d98ae3d..b05ac19b0 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -236,12 +236,12 @@ sub call { } call('language'); -call('country'); call('license'); # "Previous" button isn't functiunnal and acts like "next" (#25349) $::Wizard_no_previous = 1; -call('keyboard'); call('timezone'); +call('country'); +call('keyboard'); call('network'); if (defined $::WizardWindow) { $::WizardWindow->destroy; |