diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-05-20 01:00:03 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-05-20 01:00:03 +0000 |
commit | b0746334d82c8cf745e3b0e6ae645e43c921903b (patch) | |
tree | 57f48cbf516b37c342a2336f11c203ebf204d3ef /scripts/getkeymaps | |
parent | 1e43a4082cdbe6c1628d77e0bda2e9c72f9de2e3 (diff) | |
download | anaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.tar.gz anaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.tar.xz anaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.zip |
the file exists and loadkeys is good about errors to stderr
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 8f4e4d2fc..7b1478d84 100755 --- a/scripts/getkeymaps +++ b/scripts/getkeymaps @@ -37,7 +37,7 @@ MAPS=$(python -c "import rhpl.keyboard_models ; rhpl.keyboard_models.get_support for map in $MAPS ; do eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*" | while read n; do - /bin/loadkeys `basename $n .gz` + /bin/loadkeys `basename $n .gz` >/dev/null $READMAP $TMPDIR/`basename $n .map.gz`.map done done |