From 90b955b8364ed83afb06cfd6a0e8b04d72510b12 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Elio=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sat, 8 Aug 2009 22:12:42 +0200 Subject: [PATCH] =?utf8?q?Fix=20=E2=80=9Cmake=20distcheck=E2=80=9D=20run?= =?utf8?q?=20outside=20of=20the=20source=20directory.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Pass the path to keys.txt as second parameter of check-keymaps.sh so that it can be found in the right path. --- Makefile.am | 2 +- extras/keymap/check-keymaps.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index c6952978..221e91f5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -493,7 +493,7 @@ udevacl-install-hook: ln -sf $(libexecdir)/udev-acl $(DESTDIR)$(prefix)/lib/ConsoleKit/run-session.d/udev-acl.ck keymaps-distcheck-hook: extras/keymap/keys.txt - ./extras/keymap/check-keymaps.sh $(top_srcdir) + $(top_srcdir)/extras/keymap/check-keymaps.sh $(top_srcdir) $^ # ------------------------------------------------------------------------------ # Custom rules diff --git a/extras/keymap/check-keymaps.sh b/extras/keymap/check-keymaps.sh index d4e3e917..892fcfd6 100755 --- a/extras/keymap/check-keymaps.sh +++ b/extras/keymap/check-keymaps.sh @@ -4,7 +4,7 @@ # and that all key maps listed in the rules are valid and present in # Makefile.am SRCDIR=$1 -KEYLIST=$SRCDIR/extras/keymap/keys.txt +KEYLIST=$2 KEYMAPS_DIR=$SRCDIR/extras/keymap/keymaps #extras/keymap/keymaps RULES=$SRCDIR/extras/keymap/95-keymap.rules -- 2.39.5