diff options
author | 2013-04-06 03:47:30 +0000 | |
---|---|---|
committer | 2013-04-06 03:47:30 +0000 | |
commit | db1f86b55dd98e5e2749ff5c40df5e29ecba2ad1 (patch) | |
tree | 9768d81df094814ea5596a2939ce1954b31f4ba0 /eclass/toolchain.eclass | |
parent | Fix libpng dependency, thanks to Samuli Suominen. (diff) | |
download | historical-db1f86b55dd98e5e2749ff5c40df5e29ecba2ad1.tar.gz historical-db1f86b55dd98e5e2749ff5c40df5e29ecba2ad1.tar.bz2 historical-db1f86b55dd98e5e2749ff5c40df5e29ecba2ad1.zip |
disable info page generation since gcc includes generated pages already #464008 by Max Steel
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index f743b9a8acf4..58659dc52eea 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.574 2013/04/05 05:23:22 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.575 2013/04/06 03:47:30 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1227,6 +1227,10 @@ gcc_do_configure() { --with-pkgversion="${BRANDING_GCC_PKGVERSION}" set -- ${confgcc} "$@" ${EXTRA_ECONF} + # Disable gcc info regeneration -- it ships with generated info pages + # already. Our custom version/urls/etc... trigger it. #464008 + export gcc_cv_prog_makeinfo_modern=no + # Do not let the X detection get in our way. We know things can be found # via system paths, so no need to hardcode things that'll break multilib. # Older gcc versions will detect ac_x_libraries=/usr/lib64 which ends up |