diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-12-12 23:22:37 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-12-12 23:22:37 +0000 |
commit | 2291791204a7d2296d72920ffef2724a719e847c (patch) | |
tree | 4f65acbc43da0a12c1a696948fc2f4f99e327074 /sys-devel | |
parent | Version bump. (Manifest recommit) (diff) | |
download | gentoo-2-2291791204a7d2296d72920ffef2724a719e847c.tar.gz gentoo-2-2291791204a7d2296d72920ffef2724a719e847c.tar.bz2 gentoo-2-2291791204a7d2296d72920ffef2724a719e847c.zip |
Fixed a bug in creating /usr/<CHOST32> on sparc64-multilib.
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
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 c60c3be89e86..a17e648506e2 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.18 2004/12/12 15:04:37 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.15.92.0.2-r1.ebuild,v 1.19 2004/12/12 23:22:37 eradicator Exp $ inherit eutils libtool flag-o-matic gnuconfig @@ -136,13 +136,13 @@ src_install() { if [ -n "${PROFILE_ARCH}" ]; then if [ "${PROFILE_ARCH}" = "sparc64-multilib" ]; then - dodir /usr/${CHOST32} + dodir /usr/${CHOST32}/bin 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/${CHOST32}-${x} + dosym ../${CHOST}/bin/${x} /usr/${CHOST32}/bin/${x} [ ! -e "${D}/usr/bin/${CHOST32}-${x}" ] && \ dosym ../${CHOST32}/bin/${x} /usr/bin/${CHOST32}-${x} done |