c460cc8161
As pointed out on IRC, the static tools causes problems on distributions without glibc-static, and we don't need them - So just disable them like we do for the target build. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26 lines
871 B
Makefile
26 lines
871 B
Makefile
#############################################################
|
|
#
|
|
# module-init-tools
|
|
#
|
|
#############################################################
|
|
|
|
MODULE_INIT_TOOLS_VERSION = 3.15
|
|
MODULE_INIT_TOOLS_SOURCE = module-init-tools-$(MODULE_INIT_TOOLS_VERSION).tar.bz2
|
|
MODULE_INIT_TOOLS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/module-init-tools/
|
|
MODULE_INIT_TOOLS_CONF_ENV = ac_cv_prog_DOCBOOKTOMAN=''
|
|
MODULE_INIT_TOOLS_CONF_OPT = \
|
|
--disable-static-utils \
|
|
--disable-builddir \
|
|
--program-transform-name=''
|
|
|
|
# module-init-tools-3.15-add-manpages-config-option.patch is modifying
|
|
# configure.ac and Makefile.am
|
|
MODULE_INIT_TOOLS_AUTORECONF = YES
|
|
HOST_MODULE_INIT_TOOLS_AUTORECONF = YES
|
|
HOST_MODULE_INIT_TOOLS_CONF_ENV = ac_cv_prog_DOCBOOKTOMAN=''
|
|
HOST_MODULE_INIT_TOOLS_CONF_OPT = --disable-static-utils
|
|
|
|
$(eval $(call AUTOTARGETS))
|
|
$(eval $(call AUTOTARGETS,host))
|
|
|