diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-10 08:30:39 -0500 |
---|---|---|
committer | Sergey V. Udaltsov <svu@gnome.org> | 2010-02-10 21:11:39 +0000 |
commit | 0fd482b0386a103c6b5c986ba40a4c5b14192546 (patch) | |
tree | bd924b9fc96456b48add5139bf1763b6d64f6b03 | |
parent | 32ee4f080b9ab82c6e81e2bf226ae6da8b981557 (diff) | |
download | xkeyboard-config-0fd482b0386a103c6b5c986ba40a4c5b14192546.tar.gz xkeyboard-config-0fd482b0386a103c6b5c986ba40a4c5b14192546.tar.bz2 xkeyboard-config-0fd482b0386a103c6b5c986ba40a4c5b14192546.zip |
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 <memsize@videotron.ca>
-rw-r--r-- | xkbrules.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xkbrules.am b/xkbrules.am index 0251b749..d8ee781e 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 |