diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-20 21:03:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-20 21:03:18 +0000 |
commit | 037d713f16af56333b0bbdc249ff7073ac81a368 (patch) | |
tree | 497a0b531acbe0252d3b638d6dc8721b2ba448f1 /perl-install/keyboard.pm | |
parent | cea41ee6a61d844cde0b4dbd6d325f351dadf4b1 (diff) | |
download | drakx-backup-do-not-use-037d713f16af56333b0bbdc249ff7073ac81a368.tar drakx-backup-do-not-use-037d713f16af56333b0bbdc249ff7073ac81a368.tar.gz drakx-backup-do-not-use-037d713f16af56333b0bbdc249ff7073ac81a368.tar.bz2 drakx-backup-do-not-use-037d713f16af56333b0bbdc249ff7073ac81a368.tar.xz drakx-backup-do-not-use-037d713f16af56333b0bbdc249ff7073ac81a368.zip |
no_comment
Diffstat (limited to 'perl-install/keyboard.pm')
-rw-r--r-- | perl-install/keyboard.pm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm index 61f7c5467..b312fc85a 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -176,15 +176,19 @@ sub loadkeys_files { my $p = "/usr/lib/kbd/keymaps/i386/*"; my $post = ".kmap.gz"; my %trans = ("cz-latin2" => "cz-lat2"); - my @l; + my (@l, %l); foreach (values %keyboards) { local $_ = $trans{$_->[1]} || $_->[1]; my ($l) = glob("$p/$_$post"); $l or /(..)/ and ($l) = glob("$p/$1$post"); - push @l, $l if $l; - print STDERR "unknown $_\n" if $_[0] && !$l; - } - @l; + print STDERR "unknown $_\n" if $_[0] && !$l; $l or next; + push @l, $l; + foreach (`zgrep include $l | grep "^include"`) { + /include\s+"(.*)"/ or die "bad line $_"; + @l{glob("$p/$1.inc.gz")} = (); + } + } + @l, keys %l, map { glob("$p/$_.inc.gz") } qw(compose euro windowkeys linux-keys-bare); } sub lang2keyboard($) { |