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 | 3c3d64a77be1eccfcf7390dab2de99ba617dc7c3 (patch) | |
tree | 82f72db877429c2c43e2cbdb2f2c718e2fcac814 /eclass/toolchain.eclass | |
parent | dropping pointless mask on nini (diff) | |
download | gentoo-2-3c3d64a77be1eccfcf7390dab2de99ba617dc7c3.tar.gz gentoo-2-3c3d64a77be1eccfcf7390dab2de99ba617dc7c3.tar.bz2 gentoo-2-3c3d64a77be1eccfcf7390dab2de99ba617dc7c3.zip |
dont build protoize for cross-compilers
Diffstat (limited to 'eclass/toolchain.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 .... |