diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-03 15:22:17 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-03 15:28:56 +0200 |
commit | 09b74417e3de932cdb5a1ab97101434bed9cc989 (patch) | |
tree | f2316aa5a6fe17cfbc234fe02e9cb0c25a105cb6 /package/gcc | |
parent | b7c0041c31754a5679eb0a3e4bcf41f80d473ae2 (diff) | |
download | buildroot-09b74417e3de932cdb5a1ab97101434bed9cc989.tar.gz buildroot-09b74417e3de932cdb5a1ab97101434bed9cc989.zip |
gcc: re-disable info documentation
The documentation of older GCC versions (E.G. 4.3.x) contain constructs
that are no longer accepted by recent (5.x) versions of makeinfo, breaking
the build.
The documentation isn't really needed, and takes up extra space/build time,
so work around it by disabling documentation, like we had before the
conversion of the toolchain to the package infrastructure.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/gcc.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk index cd6efed60d..782217fdd5 100644 --- a/package/gcc/gcc.mk +++ b/package/gcc/gcc.mk @@ -97,6 +97,7 @@ HOST_GCC_COMMON_CONF_OPT = \ --disable-multilib \ --with-gmp=$(HOST_DIR)/usr \ --with-mpfr=$(HOST_DIR)/usr \ + MAKEINFO=missing # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43810 # Workaround until it's fixed in 4.5.4 or later |