e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
873 B
Makefile
26 lines
873 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 $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|