diff options
author | 2004-12-27 02:39:38 +0000 | |
---|---|---|
committer | 2004-12-27 02:39:38 +0000 | |
commit | f43b75adea44f28e395e870ac22efc41eaacf993 (patch) | |
tree | 8f2220d585de782871690814fbf1460c1fca0307 | |
parent | ~alpha keyword. (Manifest recommit) (diff) | |
download | gentoo-2-f43b75adea44f28e395e870ac22efc41eaacf993.tar.gz gentoo-2-f43b75adea44f28e395e870ac22efc41eaacf993.tar.bz2 gentoo-2-f43b75adea44f28e395e870ac22efc41eaacf993.zip |
Removing sparc64-multilib stuff as we're just using the superior binutils-config versions in that profile.
-rw-r--r-- | sys-devel/binutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild | 40 |
2 files changed, 17 insertions, 30 deletions
diff --git a/sys-devel/binutils/ChangeLog b/sys-devel/binutils/ChangeLog index 80e07a6797c5..ed1fa607af60 100644 --- a/sys-devel/binutils/ChangeLog +++ b/sys-devel/binutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/binutils # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/ChangeLog,v 1.176 2004/12/21 07:28:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/ChangeLog,v 1.177 2004/12/27 02:39:38 eradicator Exp $ + + 26 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org> + binutils-2.15.92.0.2-r1.ebuild: + Removing sparc64-multilib stuff as we're just using the superior + binutils-config versions in that profile. *binutils-2.15.94.0.2 (21 Dec 2004) diff --git a/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild b/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild index 0e738cc3a709..9c5cc9c09599 100644 --- a/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild +++ b/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild,v 1.20 2004/12/14 07:51:12 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild,v 1.21 2004/12/27 02:39:38 eradicator Exp $ inherit eutils libtool flag-o-matic gnuconfig @@ -134,34 +134,16 @@ src_install() { ln -s ../${CHOST}/bin/${x} ${x} done - if [ -n "${PROFILE_ARCH}" ]; then - if [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then - for CH in ${MULTILIB_CHOSTS}; do - if [ "${CH}" = "${CHOST}" ]; then - for x in `ls ${D}/usr/${CHOST}/bin/`; do - [ ! -e "${D}/usr/bin/${CHOST}-${x}" ] && \ - dosym ../${CHOST}/bin/${x} /usr/bin/${CHOST}-${x} - done - else - dodir /usr/${CH}/bin - - for x in `ls ${D}/usr/${CHOST}/bin/`; do - dosym ../../${CHOST}/bin/${x} /usr/${CH}/bin/${x} - [ ! -e "${D}/usr/bin/${CH}-${x}" ] && \ - dosym ../${CH}/bin/${x} /usr/bin/${CH}-${x} - done - fi - done - elif [ "${PROFILE_ARCH/64}" != "${PROFILE_ARCH}" ]; then - dosym ${CHOST} /usr/${CHOST/-/64-} - - for x in `ls ${D}/usr/${CHOST}/bin/` - do - [ ! -e "${D}/usr/bin/${CHOST}-${x}" ] && \ - dosym ../${CHOST}/bin/${x} /usr/bin/${CHOST}-${x} - dosym ../${CHOST}/bin/${x} /usr/bin/${CHOST/-/64-}-${x} - done - fi + if [ -n "${PROFILE_ARCH}" ] && + [ "${PROFILE_ARCH/64}" != "${PROFILE_ARCH}" ]; then + dosym ${CHOST} /usr/${CHOST/-/64-} + + for x in `ls ${D}/usr/${CHOST}/bin/` + do + [ ! -e "${D}/usr/bin/${CHOST}-${x}" ] && \ + dosym ../${CHOST}/bin/${x} /usr/bin/${CHOST}-${x} + dosym ../${CHOST}/bin/${x} /usr/bin/${CHOST/-/64-}-${x} + done fi cd ${S} |