summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-12-07 00:24:50 +0000
committerMike Frysinger <vapier@gentoo.org>2004-12-07 00:24:50 +0000
commitc85dd45570ad17e21ac1fcaab730576bada4fe22 (patch)
treea3ff014d35f261dc008449fc38a84e8f66cb1c56 /eclass
parentdont screw with SLOTs that dont need it (diff)
downloadhistorical-c85dd45570ad17e21ac1fcaab730576bada4fe22.tar.gz
historical-c85dd45570ad17e21ac1fcaab730576bada4fe22.tar.bz2
historical-c85dd45570ad17e21ac1fcaab730576bada4fe22.zip
support upgrade path
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain-binutils.eclass12
1 files changed, 8 insertions, 4 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass
index 4acf91971a3b..aef2b6f9b328 100644
--- a/eclass/toolchain-binutils.eclass
+++ b/eclass/toolchain-binutils.eclass
@@ -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/eclass/toolchain-binutils.eclass,v 1.11 2004/12/05 22:09:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.12 2004/12/07 00:24:50 vapier Exp $
# We install binutils into CTARGET-VERSION specific directories. This lets
# us easily merge multiple versions for multiple targets (if we wish) and
@@ -24,9 +24,13 @@ SRC_URI="mirror://kernel/linux/devel/binutils/${P}.tar.bz2
LICENSE="|| ( GPL-2 LGPL-2 )"
IUSE="nls bootstrap build multitarget uclibc multislot"
-use multislot \
- && SLOT="${CTARGET}-${PV}" \
- || SLOT="${CTARGET}"
+if use multislot ; then
+ SLOT="${CTARGET}-${PV}"
+elif [[ ${CTARGET} != ${CHOST} ]] ; then
+ SLOT="${CTARGET}"
+else
+ SLOT="0"
+fi
DEPEND="virtual/libc
nls? ( sys-devel/gettext )