config: use existing variables KEYSYMDEF_H and XF86KEYSYM_H
authorGaetan Nadon <memsize@videotron.ca>
Thu, 9 Dec 2010 02:20:46 +0000 (21:20 -0500)
committerGaetan Nadon <memsize@videotron.ca>
Sat, 18 Dec 2010 16:19:56 +0000 (11:19 -0500)
These automake variables are not currently used.
The variable KS_HEADERS is not required anymore.

Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
configure.ac
src/makekeys/Makefile.am

index b982839..7f8f9fa 100644 (file)
@@ -87,9 +87,6 @@ test -f "$XF86KEYSYM_H" || AC_MSG_ERROR([can't locate XF86keysym.h in $includex1
 AC_MSG_RESULT([$XF86KEYSYM_H])
 AC_SUBST([XF86KEYSYM_H])
 
-# Aggregate the headers full paths for makekeys
-AC_SUBST([KS_HEADERS], ['$(KEYSYMDEF_H) $(XF86KEYSYM_H)'])
-
 # Define a configuration option for the XKB config root
 AC_ARG_WITH([xkb_config_root],
     [AS_HELP_STRING([--with-xkb-config-root=<paths>],
index 44d5081..1847034 100644 (file)
@@ -10,4 +10,4 @@ CLEANFILES = ks_tables.h
 
 ks_tables.h: makekeys$(EXEEXT)
        @rm -f $@
-       cat $(KS_HEADERS) | $(builddir)/makekeys$(EXEEXT) > $@
+       cat $(KEYSYMDEF_H) $(XF86KEYSYM_H) | $(builddir)/makekeys$(EXEEXT) > $@