diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-19 12:42:05 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-19 14:46:34 +0200 |
commit | 957c515e9347dda1a578ec63007a5ebe729762cb (patch) | |
tree | c1c37ab01078eab0c347358b181db3f1984ffe78 /main/kbd/bkeymaps.patch | |
parent | 21dcbfdcb78aa871cd1cad7a51d9b030222c9c58 (diff) | |
download | aports-957c515e9347dda1a578ec63007a5ebe729762cb.tar.bz2 aports-957c515e9347dda1a578ec63007a5ebe729762cb.tar.xz |
main/kbd: provide bkeymaps for backwards compat
so we dont break scripts that tries to install bkeymaps
Diffstat (limited to 'main/kbd/bkeymaps.patch')
-rw-r--r-- | main/kbd/bkeymaps.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/main/kbd/bkeymaps.patch b/main/kbd/bkeymaps.patch new file mode 100644 index 0000000000..cea626167f --- /dev/null +++ b/main/kbd/bkeymaps.patch @@ -0,0 +1,14 @@ +diff --git a/src/loadkeys.c b/src/loadkeys.c +index 8b8e7a1..b3f7fea 100644 +--- a/src/loadkeys.c ++++ b/src/loadkeys.c +@@ -174,7 +174,8 @@ main(int argc, char *argv[]) + } + + /* get console */ +- fd = getfd(console); ++ if (!(options & OPT_B)) ++ fd = getfd(console); + + if (!(options & OPT_M) && !(options & OPT_B)) { + /* check whether the keyboard is in Unicode mode */ |