diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-12-05 20:28:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-12-05 20:28:27 +0000 |
commit | ac6433708d7b93e599a5aa418f5e891062589586 (patch) | |
tree | f243ed64a23e1a0fef684624de7bf97ceb90b586 /eclass/toolchain.eclass | |
parent | Version bump #71675 by Neil Bothwick. Make sure nroff isnt run #73389 by Gus... (diff) | |
download | gentoo-2-ac6433708d7b93e599a5aa418f5e891062589586.tar.gz gentoo-2-ac6433708d7b93e599a5aa418f5e891062589586.tar.bz2 gentoo-2-ac6433708d7b93e599a5aa418f5e891062589586.zip |
fix revert SLOT behavior
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index b1ad786822db..b88a3d9937f8 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.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.eclass,v 1.60 2004/12/05 19:20:13 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.61 2004/12/05 20:28:27 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" @@ -101,7 +101,7 @@ else fi use multislot \ && SLOT="${CTARGET}-${MY_PV_FULL}" \ - || SLOT="${MY_PV}" + || SLOT="${CTARGET}-${MY_PV}" fi #----<< SLOT+IUSE logic >>---- |