102c4a4bad
mtools calls install-info at 'make install' time if available after installing the mtools info page - But as we don't use the info pages for anything / remove in target-finalize, this is a waste of time and a potential cause of build failures as reported on the list: http://lists.busybox.net/pipermail/buildroot/2016-May/160604.html So ensure configure doesn't find it. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
879 B
Makefile
34 lines
879 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_OPTS = --without-x
|
||
# info documentation not needed
|
||
MTOOLS_CONF_ENV = \
|
||
ac_cv_func_setpgrp_void=yes \
|
||
ac_cv_path_INSTALL_INFO=
|
||
|
||
HOST_MTOOLS_CONF_ENV = \
|
||
ac_cv_path_INSTALL_INFO=
|
||
|
||
# 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))
|