diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-27 14:03:35 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-27 14:03:35 +0000 |
commit | ede63b3b0df1883f368711a6ca6746455d2a4076 (patch) | |
tree | d92b70d43c6a124e7f108a03f7de527ef0b83e0a /perl-install/keyboard.pm | |
parent | 28ef5814f5973e134faec194e952bbbe297a732b (diff) | |
download | drakx-ede63b3b0df1883f368711a6ca6746455d2a4076.tar drakx-ede63b3b0df1883f368711a6ca6746455d2a4076.tar.gz drakx-ede63b3b0df1883f368711a6ca6746455d2a4076.tar.bz2 drakx-ede63b3b0df1883f368711a6ca6746455d2a4076.tar.xz drakx-ede63b3b0df1883f368711a6ca6746455d2a4076.zip |
no_comment
Diffstat (limited to 'perl-install/keyboard.pm')
-rw-r--r-- | perl-install/keyboard.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm index a029360eb..ff0468fec 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -171,7 +171,6 @@ sub lang2keyboard($) { } sub load($) { - return if arch() =~ /^sparc/; my ($keymap) = @_; my ($magic, @keymaps) = unpack "I i" . c::MAX_NR_KEYMAPS() . "a*", $keymap; @@ -224,7 +223,7 @@ sub setup($) { eval { load(<F>) }; } my $f = xmodmap_file($keyboard); - #eval { run_program::run('xmodmap', $f) } unless $::testing || !$f; + eval { run_program::run('xmodmap', $f) } unless $::testing || !$f; } sub write($$;$) { |