summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2012-04-12 00:08:26 +0200
committerKay Sievers <kay@vrfy.org>2012-04-12 00:09:13 +0200
commite8854556417197e195196e94c74bc01ff5d064ff (patch)
tree7a21cedb9e5818c498132fa5766e5abcf2eaf06e
parent23e0573ceab540966cabb30ab4fb8abfe23f6351 (diff)
udev: check-keymaps.sh - fix source directory
-rwxr-xr-xsrc/udev/keymap/check-keymaps.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/udev/keymap/check-keymaps.sh b/src/udev/keymap/check-keymaps.sh
index 405168c66..765e582af 100755
--- a/src/udev/keymap/check-keymaps.sh
+++ b/src/udev/keymap/check-keymaps.sh
@@ -4,9 +4,9 @@
# and that all key maps listed in the rules are valid and present in
# Makefile.am
SRCDIR=${1:-.}
-KEYLIST=${2:-src/keymap/keys.txt}
-KEYMAPS_DIR=$SRCDIR/src/keymap/keymaps
-RULES=$SRCDIR/src/keymap/95-keymap.rules
+KEYLIST=${2:-src/udev/keymap/keys.txt}
+KEYMAPS_DIR=$SRCDIR/src/udev/keymap/keymaps
+RULES=$SRCDIR/src/udev/keymap/95-keymap.rules
[ -e "$KEYLIST" ] || {
echo "need $KEYLIST please build first" >&2
@@ -16,7 +16,7 @@ RULES=$SRCDIR/src/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/keymap/keymaps/*:" >&2
+ echo "ERROR: unknown key names in src/udev/keymap/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/keymap/keymaps/$m\>" $SRCDIR/Makefile.am || {
+ grep -q "src/udev/keymap/keymaps/$m\>" $SRCDIR/Makefile.am || {
echo "ERROR: map file $m is not added to Makefile.am" >&2
exit 1
}