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>
28 lines
764 B
Makefile
28 lines
764 B
Makefile
################################################################################
|
||
#
|
||
# mtools
|
||
#
|
||
################################################################################
|
||
|
||
MTOOLS_VERSION = 4.0.18
|
||
MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION).tar.bz2
|
||
MTOOLS_SITE = $(BR2_GNU_MIRROR)/mtools
|
||
MTOOLS_LICENSE = GPLv3+
|
||
MTOOLS_LICENSE_FILES = COPYING
|
||
MTOOLS_CONF_ENV = ac_cv_func_setpgrp_void=yes
|
||
MTOOLS_CONF_OPTS = --without-x
|
||
|
||
# link with iconv if enabled
|
||
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||
MTOOLS_DEPENDENCIES += libiconv
|
||
MTOOLS_CONF_ENV += LIBS=-liconv
|
||
# We have no host dependencies
|
||
HOST_MTOOLS_DEPENDENCIES =
|
||
endif
|
||
|
||
# Package does not build in parallel due to improper make rules
|
||
MTOOLS_MAKE = $(MAKE1)
|
||
|
||
$(eval $(autotools-package))
|
||
$(eval $(host-autotools-package))
|