diff options
author | Francois Pons <fpons@mandriva.com> | 2000-11-28 10:44:09 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-11-28 10:44:09 +0000 |
commit | 17b78ef29b650886034af93d87dadcc18217843b (patch) | |
tree | dab6a2daec2acd48814bfd0bc6dd131350ec2007 /perl-install | |
parent | 7b5808c471c7eb99ebd6fc8cbdd4274d1f63fbae (diff) | |
download | drakx-17b78ef29b650886034af93d87dadcc18217843b.tar drakx-17b78ef29b650886034af93d87dadcc18217843b.tar.gz drakx-17b78ef29b650886034af93d87dadcc18217843b.tar.bz2 drakx-17b78ef29b650886034af93d87dadcc18217843b.tar.xz drakx-17b78ef29b650886034af93d87dadcc18217843b.zip |
keep track of unknown keyboard (for upgrade)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/keyboard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm index 8f8fef04e..a93b1d9ef 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -294,7 +294,7 @@ sub read { my %keyf = getVarsFromSh("$prefix/etc/sysconfig/keyboard"); my $keytable = $keyf{KEYTABLE}; keyboard2kmap($_) eq $keytable and return $_ foreach keys %keyboards; - $keyboards{$keytable} ? $keytable : 'us_intl'; + $keyboards{$keytable} && $keytable; #- keep track of unknown keyboard. } #-###################################################################################### |