diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-27 18:01:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-27 18:01:31 +0000 |
commit | 13cde51b8fff525c97aedd8fc24a5287e46d87a9 (patch) | |
tree | fe96bc4e01b3fb5429ca177c8b0233aa48d48d1e /eclass/toolchain.eclass | |
parent | Changed the fixed bug number for the last commit. (diff) | |
download | gentoo-2-13cde51b8fff525c97aedd8fc24a5287e46d87a9.tar.gz gentoo-2-13cde51b8fff525c97aedd8fc24a5287e46d87a9.tar.bz2 gentoo-2-13cde51b8fff525c97aedd8fc24a5287e46d87a9.zip |
use BINPATH rather custom string
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 c83847196aa7..56382949a495 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.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/toolchain.eclass,v 1.303 2006/08/27 17:52:37 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.304 2006/08/27 18:01:31 vapier Exp $ HOMEPAGE="http://gcc.gnu.org/" LICENSE="GPL-2 LGPL-2.1" @@ -1657,7 +1657,7 @@ gcc-compiler_src_install() { # Rename jar because it could clash with Kaffe's jar if this gcc is # primary compiler (aka don't have the -<version> extension) - cd ${D}${PREFIX}/${CTARGET}/gcc-bin/${GCC_CONFIG_VER} + cd ${D}${BINPATH} [[ -f jar ]] && mv -f jar gcj-jar # Move <cxxabi.h> to compiler-specific directories |