diff options
author | 2006-04-02 09:11:48 +0000 | |
---|---|---|
committer | 2006-04-02 09:11:48 +0000 | |
commit | f60111e8cf06a0259ea5feacfbe8fa280c5d33e0 (patch) | |
tree | d79816d4e512cb20bf3a4a21b96f921d4b8faff2 /eclass | |
parent | really remove the ghostscript blockers this time (diff) | |
download | gentoo-2-f60111e8cf06a0259ea5feacfbe8fa280c5d33e0.tar.gz gentoo-2-f60111e8cf06a0259ea5feacfbe8fa280c5d33e0.tar.bz2 gentoo-2-f60111e8cf06a0259ea5feacfbe8fa280c5d33e0.zip |
remove some old notes and old dodir calls
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index a1d744108bd7..72e8db0b7c32 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.256 2006/04/02 05:13:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.257 2006/04/02 09:11:48 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -633,8 +633,6 @@ create_gcc_env_entry() { # workaround for libtool being stupid and using .la's from # conflicting ABIs by using the first one in the search path - # XXX: This breaks when cross-compiling a native compiler (CBUILD != CHOST) - local abi=${DEFAULT_ABI} local MULTIDIR=$($(XGCC) $(get_abi_CFLAGS ${abi}) --print-multi-directory) if [[ ${MULTIDIR} == "." ]] ; then @@ -1516,7 +1514,6 @@ gcc-compiler_src_install() { # Basic sanity check is_crosscompile || [[ -r ${D}${BINPATH}/gcc ]] || die "gcc not found in ${D}" - dodir /lib /usr/bin dodir /etc/env.d/gcc create_gcc_env_entry @@ -1649,8 +1646,6 @@ gcc-compiler_src_install() { # when installing gcc, it dumps internal libraries into /usr/lib # instead of the private gcc lib path gcc_movelibs() { - # XXX: This breaks when cross-compiling a native compiler (CBUILD != CHOST) - local multiarg for multiarg in $($(XGCC) -print-multi-lib) ; do multiarg=${multiarg#*;} |