diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-05-31 21:57:15 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-05-31 22:10:29 +0200 |
commit | 102c4a4bad747221191a67fdced8d077e31aeb2c (patch) | |
tree | 46666a1b8a3c2e34f5362e2ce7f10512a8e3a21f | |
parent | e032a29604e843c8adc551d5ceb3c45bc7715b4d (diff) | |
download | buildroot-102c4a4bad747221191a67fdced8d077e31aeb2c.tar.gz buildroot-102c4a4bad747221191a67fdced8d077e31aeb2c.zip |
mtools: ensure install-info isn't used
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>
-rw-r--r-- | package/mtools/mtools.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/mtools/mtools.mk b/package/mtools/mtools.mk index d331af25fa..fc145c0832 100644 --- a/package/mtools/mtools.mk +++ b/package/mtools/mtools.mk @@ -9,8 +9,14 @@ 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 +# 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) |