From: Martin Pitt Date: Thu, 21 Jan 2010 00:09:16 +0000 (+0100) Subject: extras/keymap/check-keymaps.sh: Ignore comment-only lines X-Git-Tag: 174~630 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=386aa6ebd810fb87718972e298c71184b73bd210 extras/keymap/check-keymaps.sh: Ignore comment-only lines --- diff --git a/extras/keymap/check-keymaps.sh b/extras/keymap/check-keymaps.sh index 892fcfd6c..c92246a2c 100755 --- a/extras/keymap/check-keymaps.sh +++ b/extras/keymap/check-keymaps.sh @@ -13,7 +13,8 @@ RULES=$SRCDIR/extras/keymap/95-keymap.rules exit 1 } -missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' ${KEYMAPS_DIR}/*|sort -u)) +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 extras/keymap/keymaps/*:" >&2 echo "$missing" >&2