summaryrefslogtreecommitdiff
path: root/extras/keymap/check-keymaps.sh
diff options
context:
space:
mode:
authorDiego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>2009-08-07 02:58:23 +0200
committerKay Sievers <kay.sievers@vrfy.org>2009-08-07 19:15:29 +0200
commit7d701b0e26f96c279ef9ba8e4ef82fc4fca56acf (patch)
treeebb60a9fc042d7e9fdfc52133f0bae95c0c0d736 /extras/keymap/check-keymaps.sh
parent402520cc08a66762a3683dfd11261f004fa42cb8 (diff)
Merge keymap building in the top-level Makefile.am.
Slight adjustment around the tests and the rules for the new working directory.
Diffstat (limited to 'extras/keymap/check-keymaps.sh')
-rwxr-xr-xextras/keymap/check-keymaps.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/extras/keymap/check-keymaps.sh b/extras/keymap/check-keymaps.sh
index 15e8ef8c1e..f79c3f5a82 100755
--- a/extras/keymap/check-keymaps.sh
+++ b/extras/keymap/check-keymaps.sh
@@ -1,17 +1,17 @@
#!/bin/bash
# check that all key names in keymaps/* are known in <linux/input.h>
-KEYLIST=./keys.txt
-RULES=95-keymap.rules
+KEYLIST=extras/keymap/keys.txt
+RULES=extras/keymap/95-keymap.rules
[ -e "$KEYLIST" ] || {
echo "need $KEYLIST please build first" >&2
exit 1
}
-missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' keymaps/*|sort -u))
+missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' extras/keymap/keymaps/*|sort -u))
[ -z "$missing" ] || {
- echo "ERROR: unknown key names in keymaps/*:" >&2
+ echo "ERROR: unknown key names in extras/keymap/keymaps/*:" >&2
echo "$missing" >&2
exit 1
}
@@ -22,11 +22,11 @@ for m in $maps; do
# ignore inline mappings
[ "$m" = "${m#0x}" ] || continue
- [ -e keymaps/$m ] || {
+ [ -e extras/keymap/keymaps/$m ] || {
echo "ERROR: unknown map name in $RULES: $m" >&2
exit 1
}
- grep -q "keymaps/$m\>" Makefile.am || {
+ grep -q "extras/keymap/keymaps/$m\>" Makefile.am || {
echo "ERROR: map file $m is not added to Makefile.am" >&2
exit 1
}