From b396e02c4300b3797b651656b5602b82feb9b7bc Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Thu, 22 Nov 2012 21:51:53 -0500 Subject: Fix keymap test during make distcheck The keys/keymap test preformed by src/keymap/check-keymaps.sh must find both keys.txt and the keymap directory. When building out of the source tree, eg when doing `make distcheck`, these are located at ${top_builddir}/src/keymap/keys.txt and ${top_srcdir}/keymap/, respectively. This patch fixes the build so that these are now correctly found. Signed-off-by: Anthony G. Basile --- keymaps/Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'keymaps') diff --git a/keymaps/Makefile.am b/keymaps/Makefile.am index ba53b030a5..a5dfecf339 100644 --- a/keymaps/Makefile.am +++ b/keymaps/Makefile.am @@ -4,7 +4,7 @@ rootprefix=@rootprefix@ udevlibexecdir=@udevlibexecdir@ udevkeymapdir = $(udevlibexecdir)/keymaps -dist_udevkeymap_DATA = \ +KEYMAPS = \ acer \ acer-aspire_5720 \ acer-aspire_8930 \ @@ -65,3 +65,9 @@ dist_udevkeymap_DATA = \ toshiba-satellite_a110 \ toshiba-satellite_m30x \ zepto-znote + +dist_udevkeymap_DATA = \ + $(KEYMAPS) + +EXTRA_DIST = \ + $(KEYMAPS) -- cgit v1.2.3-54-g00ecf