diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-27 20:53:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-27 20:53:11 +0000 |
commit | 309f6f18e971a558c2959bf3c76ba59602546459 (patch) | |
tree | 40e3aba781dcc611f7a6856de28f40ca92b4e5ba /eclass | |
parent | dropping pointless mask on nini (diff) | |
download | historical-309f6f18e971a558c2959bf3c76ba59602546459.tar.gz historical-309f6f18e971a558c2959bf3c76ba59602546459.tar.bz2 historical-309f6f18e971a558c2959bf3c76ba59602546459.zip |
dont build protoize for cross-compilers
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 56382949a495..684e8a44416c 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.304 2006/08/27 18:01:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.305 2006/08/27 20:53:11 vapier Exp $ HOMEPAGE="http://gcc.gnu.org/" LICENSE="GPL-2 LGPL-2.1" @@ -1027,8 +1027,10 @@ gcc_src_unpack() { ${ETYPE}_src_unpack || die "failed to ${ETYPE}_src_unpack" - # enable protoize / unprotoize - sed -i -e '/^LANGUAGES =/s:$: proto:' "${S}"/gcc/Makefile.in + if ! is_crosscompile ; then + # enable protoize / unprotoize + sed -i -e '/^LANGUAGES =/s:$: proto:' "${S}"/gcc/Makefile.in + fi fix_files="" for x in contrib/test_summary libstdc++-v3/scripts/check_survey.in ; do @@ -1723,6 +1725,8 @@ gcc-compiler_src_install() { && rm -r "${D}/${DATAPATH}"/man \ || prepman "${DATAPATH}" fi + # prune empty dirs left behind + find "${D}" -type d | xargs rmdir >& /dev/null # Rather install the script, else portage with changing $FILESDIR # between binary and source package borks things .... |