summaryrefslogtreecommitdiff
path: root/src/udev/keymap/check-keymaps.sh
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2012-04-13 15:38:15 +0200
committerKay Sievers <kay@vrfy.org>2012-04-13 15:38:15 +0200
commit56d35ff9ca31a5daea0a85f05156dac76287f05e (patch)
treefa40079465c320dff427bdc9b852355b1ef04673 /src/udev/keymap/check-keymaps.sh
parentb49d9b50cfd377f28de0886330ba7bbd231fb472 (diff)
udev: keymap - move data files to root directory
Diffstat (limited to 'src/udev/keymap/check-keymaps.sh')
-rwxr-xr-xsrc/udev/keymap/check-keymaps.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/udev/keymap/check-keymaps.sh b/src/udev/keymap/check-keymaps.sh
index 765e582af4..c4572745e0 100755
--- a/src/udev/keymap/check-keymaps.sh
+++ b/src/udev/keymap/check-keymaps.sh
@@ -5,7 +5,7 @@
# Makefile.am
SRCDIR=${1:-.}
KEYLIST=${2:-src/udev/keymap/keys.txt}
-KEYMAPS_DIR=$SRCDIR/src/udev/keymap/keymaps
+KEYMAPS_DIR=$SRCDIR/keymaps
RULES=$SRCDIR/src/udev/keymap/95-keymap.rules
[ -e "$KEYLIST" ] || {
@@ -16,7 +16,7 @@ RULES=$SRCDIR/src/udev/keymap/95-keymap.rules
missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) \
<(grep -hv '^#' ${KEYMAPS_DIR}/*| awk '{print $2}' | sort -u))
[ -z "$missing" ] || {
- echo "ERROR: unknown key names in src/udev/keymap/keymaps/*:" >&2
+ echo "ERROR: unknown key names in keymaps/*:" >&2
echo "$missing" >&2
exit 1
}
@@ -31,7 +31,7 @@ for m in $maps; do
echo "ERROR: unknown map name in $RULES: $m" >&2
exit 1
}
- grep -q "src/udev/keymap/keymaps/$m\>" $SRCDIR/Makefile.am || {
+ grep -q "keymaps/$m\>" $SRCDIR/Makefile.am || {
echo "ERROR: map file $m is not added to Makefile.am" >&2
exit 1
}