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>
22 lines
523 B
Makefile
22 lines
523 B
Makefile
#############################################################
|
|
#
|
|
# m4
|
|
#
|
|
#############################################################
|
|
|
|
M4_VERSION = 1.4.16
|
|
M4_SOURCE = m4-$(M4_VERSION).tar.bz2
|
|
M4_SITE = $(BR2_GNU_MIRROR)/m4
|
|
M4_LICENSE = GPLv3+
|
|
M4_LICENSE_FILES = COPYING
|
|
M4_CONF_ENV = gl_cv_func_gettimeofday_clobber=no
|
|
|
|
ifneq ($(BR2_USE_WCHAR),y)
|
|
M4_CONF_ENV += gt_cv_c_wchar_t=no gl_cv_absolute_wchar_h=__fpending.h
|
|
endif
|
|
|
|
HOST_M4_CONF_OPT = --disable-static
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|