diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-03 17:22:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-03 17:22:59 +0000 |
commit | c81c876244eb50d5e8dd8a46a6828b7179231b6e (patch) | |
tree | 22b86cccd580d1c823e5ba9de6211d996ec63cfc /perl-install/standalone/keyboarddrake | |
parent | 05222ea791ed83e7e04ae511cdc105baf72fb752 (diff) | |
download | drakx-c81c876244eb50d5e8dd8a46a6828b7179231b6e.tar drakx-c81c876244eb50d5e8dd8a46a6828b7179231b6e.tar.gz drakx-c81c876244eb50d5e8dd8a46a6828b7179231b6e.tar.bz2 drakx-c81c876244eb50d5e8dd8a46a6828b7179231b6e.tar.xz drakx-c81c876244eb50d5e8dd8a46a6828b7179231b6e.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/standalone/keyboarddrake')
-rwxr-xr-x | perl-install/standalone/keyboarddrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/keyboarddrake b/perl-install/standalone/keyboarddrake index 7b640780e..004689b3f 100755 --- a/perl-install/standalone/keyboarddrake +++ b/perl-install/standalone/keyboarddrake @@ -38,7 +38,7 @@ if ($::expert) { my $xkb = keyboard::keyboard2full_xkb($keyboard); system('setxkbmap', '-option', '') if $xkb->{XkbOptions}; #- need re-initialised other toggles are cumulated -system('setxkbmap', $xkb->{XkbLayout}, -model => $xkb->{XkbModel}, -option => $xkb->{XkbOptions} || '', -compat => $xkb->{XkbCompat} || ''); +system('setxkbmap', $xkb->{XkbLayout}, '-model' => $xkb->{XkbModel}, '-option' => $xkb->{XkbOptions} || '', '-compat' => $xkb->{XkbCompat} || ''); eval { my $xfree_conf = Xconfig::xfree->read; $xfree_conf->set_keyboard($xkb); |