diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2013-05-03 06:01:27 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2013-05-03 06:01:27 +0000 |
commit | f25b3acbf34cfe755eed49850af25d942ee83bfc (patch) | |
tree | 0f7037fc638666e0c723126bf2cc034284415e4c /eclass/toolchain.eclass | |
parent | Import patch for 1.12 (used by GNOME-3.6) to not accidentally pick a MSAA vis... (diff) | |
download | gentoo-2-f25b3acbf34cfe755eed49850af25d942ee83bfc.tar.gz gentoo-2-f25b3acbf34cfe755eed49850af25d942ee83bfc.tar.bz2 gentoo-2-f25b3acbf34cfe755eed49850af25d942ee83bfc.zip |
Snapshots/vcs don't contain .info files.
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 37dad99e9197..fe1c835dbd89 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.584 2013/04/20 04:12:00 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.585 2013/05/03 06:01:27 dirtyepic Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1496,7 +1496,11 @@ toolchain_src_install() { # 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 mkdir -p gcc/doc - cp "${S}"/gcc/doc/*.info* gcc/doc/ || die + for x in "${S}"/gcc/doc/*.info* ; do + if [[ -f ${x} ]] ; then + cp "${x}" gcc/doc/ || die + fi + done # Remove generated headers, as they can cause things to break # (ncurses, openssl, etc). while read x ; do |