diff options
author | Chris Lumens <clumens@redhat.com> | 2008-10-16 16:51:36 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-10-16 16:51:36 -0400 |
commit | a0552881a0d4089baca65b6e059854cab668f271 (patch) | |
tree | 4677e6d3387445c0b218332a37e0e6839058e95b /scripts/getkeymaps | |
parent | 3dca7c7f0a390ff4759300ed6995d44b4aae9adb (diff) | |
download | anaconda-a0552881a0d4089baca65b6e059854cab668f271.tar.gz anaconda-a0552881a0d4089baca65b6e059854cab668f271.tar.xz anaconda-a0552881a0d4089baca65b6e059854cab668f271.zip |
I don't know what trq.map.trq-map is, but let's not include it.
Diffstat (limited to 'scripts/getkeymaps')
-rwxr-xr-x | scripts/getkeymaps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/getkeymaps b/scripts/getkeymaps index a49c9f7d7..2e003a771 100755 --- a/scripts/getkeymaps +++ b/scripts/getkeymaps @@ -54,7 +54,7 @@ fi MAPS=$(python -c "import rhpl.keyboard_models ; rhpl.keyboard_models.get_supported_models()") for map in $MAPS ; do - eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*" | while read n; do + eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*.gz" | while read n; do /bin/loadkeys `basename $n .gz` >/dev/null $READMAP $TMP/`basename $n .map.gz`.map done |