summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-04-07 08:51:25 +0000
committerMike Frysinger <vapier@gentoo.org>2013-04-07 08:51:25 +0000
commit8a36594d4102fa47301b3b853e8f4fe9afcb1542 (patch)
treeeee6f648ffb237ed0188894186f70f4b394da834 /eclass
parentVersion bump, set libdbi* dependencies to versions I have just confirmed work... (diff)
downloadgentoo-2-8a36594d4102fa47301b3b853e8f4fe9afcb1542.tar.gz
gentoo-2-8a36594d4102fa47301b3b853e8f4fe9afcb1542.tar.bz2
gentoo-2-8a36594d4102fa47301b3b853e8f4fe9afcb1542.zip
make sure we install the info pages after we disabled generation #464008
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 58659dc52eea..e870445ba0c6 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.575 2013/04/06 03:47:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.576 2013/04/07 08:51:25 vapier Exp $
#
# Maintainer: Toolchain Ninjas <toolchain@gentoo.org>
@@ -1496,6 +1496,9 @@ toolchain_src_install() {
cd "${WORKDIR}"/build
# Do allow symlinks in private gcc include dir as this can break the build
find gcc/include*/ -type l -print0 | xargs -0 rm -f
+ # Copy over the info pages. We disabled their generation earlier, but the
+ # build system only expects to install out of the build dir, not the source. #464008
+ cp "${S}"/gcc/doc/*.info gcc/doc/ || die
# Remove generated headers, as they can cause things to break
# (ncurses, openssl, etc).
for x in $(find gcc/include*/ -name '*.h') ; do