9f81bad770
This patch uses the same solution used for util-linux: https://git.busybox.net/buildroot/commit/package/util-linux?id=71f279f9a2bd3f086f3d31fa5a669d3f638bee99 To trigger the bug just build host-gettext before kbd. Fixes http://autobuild.buildroot.net/results/87e/87ea83ae4e7b7640651acd5031a624ca42e5b348/ http://autobuild.buildroot.net/results/532/532684b98e050cf5b4c50786bc9e8825eab21f97/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
586 B
Makefile
23 lines
586 B
Makefile
################################################################################
|
|
#
|
|
# kbd
|
|
#
|
|
################################################################################
|
|
|
|
KBD_VERSION = 2.0.3
|
|
KBD_SOURCE = kbd-$(KBD_VERSION).tar.xz
|
|
KBD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kbd
|
|
KBD_CONF_OPTS = \
|
|
--disable-vlock \
|
|
--disable-tests
|
|
KBD_DEPENDENCIES = \
|
|
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \
|
|
host-pkgconf
|
|
KBD_LICENSE = GPLv2+
|
|
KBD_LICENSE_FILES = COPYING
|
|
KBD_AUTORECONF = YES
|
|
|
|
KBD_INSTALL_TARGET_OPTS += MKINSTALLDIRS=$(@D)/config/mkinstalldirs
|
|
|
|
$(eval $(autotools-package))
|