From 0fd482b0386a103c6b5c986ba40a4c5b14192546 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Wed, 10 Feb 2010 08:30:39 -0500 Subject: [PATCH] xkbrules.am: replace $(abs_builddir), it breaks in automake 1.9 There is no need to specify or change directory. The xkbcomp command is invoked in the build directory where the rule file is included. Tested on automake 1.9.6 and 1.10.2 with distcheck Introduced by commit 150850554baeb2d6de124b4c3cc447a694cdc17d Signed-off-by: Gaetan Nadon --- xkbrules.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xkbrules.am b/xkbrules.am index 0251b74..d8ee781 100644 --- a/xkbrules.am +++ b/xkbrules.am @@ -8,7 +8,7 @@ dirdir = $(xkb_base) $(subdir).dir: $(dir_data) -rm -f $@ - here=$(abs_builddir); cd $(srcdir) && $(XKBCOMP) -lfhlpR -o $${here}/$@ '*' + $(XKBCOMP) -lfhlpR -o $@ '*' CLEANFILES = $(subdir).dir -- 2.32.0.93.g670b81a890