summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS1
-rwxr-xr-xperl-install/standalone/finish-install4
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;