diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2014-06-30 21:02:37 +0400 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-07-01 15:16:31 +0200 |
commit | 0c7db694ac1292167ffc23f372dd1af1918e312b (patch) | |
tree | b90a4e9f3dd7c0f3deae5d3e9774f6a32d9227b0 | |
parent | 66770f1a93a976d74316b4269a885ccf904f3148 (diff) | |
download | buildroot-0c7db694ac1292167ffc23f372dd1af1918e312b.tar.gz buildroot-0c7db694ac1292167ffc23f372dd1af1918e312b.zip |
binutils: disable makeinfo
makeinfo is known to cause problems when building old texi files with more
recent host makeinfo.
In particular binutils-2.18 won't build on Fedora 20 without this change.
Even though more up to date binutils does build without this change there's
no guaranty it will with bump of host makeinfo in the future.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Anton Kolesov <akolesov@synopsys.com>
Cc: Peter Korsgaard <peter@korsgaard.com>
Cc: Gustavo Zacarias <gustavo@zacarias.com.ar>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/binutils/binutils.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index 9cc4d28840..77d075176f 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -49,6 +49,11 @@ BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ --enable-install-libiberty \ $(BINUTILS_EXTRA_CONFIG_OPTIONS) +# Don't build documentation. It takes up extra space / build time, +# and sometimes needs specific makeinfo versions to work +BINUTILS_CONF_ENV += ac_cv_prog_MAKEINFO=missing +HOST_BINUTILS_CONF_ENV += ac_cv_prog_MAKEINFO=missing + # Install binutils after busybox to prefer full-blown utilities ifeq ($(BR2_PACKAGE_BUSYBOX),y) BINUTILS_DEPENDENCIES += busybox |