diff options
Diffstat (limited to 'perl-install/keyboard.pm')
-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 2c6b84858..5b59bd2c3 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -86,7 +86,7 @@ sub read($) { foreach (<F>) { ($_) = /^KEYTABLE=(.*)/ or log::l("unrecognized entry in keyboard configuration file ($_)"), next; - s/\"//g; + s/^\s*"(.*)"\s*$/$1/; s/\.[^.]*//; # remove extension return basename($_); } |