aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
561 B
Makefile
22 lines
561 B
Makefile
################################################################################
|
|
#
|
|
# m4
|
|
#
|
|
################################################################################
|
|
|
|
M4_VERSION = 1.4.17
|
|
M4_SOURCE = m4-$(M4_VERSION).tar.xz
|
|
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_OPTS = --disable-static
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|