diff options
author | 2006-04-19 21:19:40 +0000 | |
---|---|---|
committer | 2006-04-19 21:19:40 +0000 | |
commit | 16684b5611f927e623379805faf68781e835e5fe (patch) | |
tree | fb4698af535905ce6d3bd587b591a3478ed2ef23 | |
parent | Stable on amd64 wrt Bug #130422. (diff) | |
download | gentoo-2-16684b5611f927e623379805faf68781e835e5fe.tar.gz gentoo-2-16684b5611f927e623379805faf68781e835e5fe.tar.bz2 gentoo-2-16684b5611f927e623379805faf68781e835e5fe.zip |
special handling on ppc no longer necessary, first fixes in..
-rw-r--r-- | eclass/gnatbuild.eclass | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/eclass/gnatbuild.eclass b/eclass/gnatbuild.eclass index b47c078b17ae..032905d5290a 100644 --- a/eclass/gnatbuild.eclass +++ b/eclass/gnatbuild.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/gnatbuild.eclass,v 1.11 2006/04/13 16:37:18 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnatbuild.eclass,v 1.12 2006/04/19 21:19:40 george Exp $ # ATTN! # set HOMEPAGE and LICENSE in appropriate ebuild, as we have @@ -99,18 +99,7 @@ fi S="${WORKDIR}/gcc-${GCCVER}" # bootstrap globals, common to src_unpack and src_compile -case $(tc-arch) in - ppc) - GNATBOOT="${WORKDIR}/gnat-3.15p-powerpc-unknown-linux-gnu" - GNATBOOTINST="${GNATBOOT}" - GCC_EXEC_BASE="${GNATBOOT}/lib/gcc-lib" - ;; - amd64 | x86) - GNATBOOT="${WORKDIR}/usr" - ;; -esac - -# some buildtime globals +GNATBOOT="${WORKDIR}/usr" GNATBUILD="${WORKDIR}/build" # necessary for detecting lib locations and creating env.d entry |