summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index e97ea8e41..fbfc6c12d 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -5,6 +5,7 @@ use strict;
use common qw(:file :system);
use install_any qw(:all);
+use run_program;
use lilo;
use lang;
use keyboard;
@@ -28,7 +29,8 @@ sub new($$) {
}
sub chooseLanguage($) {
- $o->{default}->{lang}
+# eval { run_program::run('loadkeys', "/tmp/$o->{default}->{lang}) }; $@ and log::l("loadkeys failed");
+ $o->{default}->{lang};
}
sub selectInstallOrUpgrade($) {
$o->{default}->{isUpgrade} || 0;