From 27f51fdcc4e6882b0ce53f54740dc913a4c77464 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 11 May 2009 14:45:57 +0200 Subject: keymap: fix tests for separate build tree Fix thinko in keymap/check-keymaps.sh: keys.txt is not in ${srcdir}, but in the build dir. This broke "make check" when using a separate build tree. --- keymap/check-keymaps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keymap/check-keymaps.sh b/keymap/check-keymaps.sh index bb38378..e1e15cc 100755 --- a/keymap/check-keymaps.sh +++ b/keymap/check-keymaps.sh @@ -1,7 +1,7 @@ #!/bin/bash # check that all key names in keymaps/* are known in -KEYLIST=${srcdir:-.}/keys.txt +KEYLIST=./keys.txt [ -e "$KEYLIST" ] || { echo "need $KEYLIST please build first" >&2 -- cgit