Closes #2965 For some odd reason, xkeyboard-config < 1.8 was creating a symbolic link from /usr/share/X11/xkb/xkbcomp to the xkbcomp binary. But in cross-compilation mode, this is absurd as the xkbcomp binary to which the link is pointing is the one in $(HOST_DIR). This symbolic link thing has been removed completely starting from xkeyboard-config 1.9. See http://cgit.freedesktop.org/xkeyboard-config/commit/?id=f413dff57e77e7b01461508f74b4e92d1dc8defd. Therefore, we simply bump xkeyboard-config to the latest available version, 2.0. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18 lines
628 B
Makefile
18 lines
628 B
Makefile
#############################################################
|
|
#
|
|
# xkeyboard-config
|
|
#
|
|
#############################################################
|
|
XKEYBOARD_CONFIG_VERSION = 2.0
|
|
XKEYBOARD_CONFIG_SOURCE = xkeyboard-config-$(XKEYBOARD_CONFIG_VERSION).tar.bz2
|
|
XKEYBOARD_CONFIG_SITE = http://www.x.org/releases/individual/data/xkeyboard-config/
|
|
XKEYBOARD_CONFIG_AUTORECONF = NO
|
|
XKEYBOARD_CONFIG_INSTALL_STAGING = NO
|
|
XKEYBOARD_CONFIG_INSTALL_TARGET = YES
|
|
XKEYBOARD_CONFIG_DEPENDENCIES = host-intltool host-xapp_xkbcomp
|
|
|
|
XKEYBOARD_CONFIG_CONF_OPT = GMSGFMT=/usr/bin/msgfmt
|
|
|
|
$(eval $(call AUTOTARGETS,package/x11r7,xkeyboard-config))
|
|
|