diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-03-14 20:46:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-03-14 20:46:35 +0000 |
commit | 7ac6bf78cefcf41a10ffac93cd19b227ab495512 (patch) | |
tree | 07b3ac8915756a64c9d9b211724d2ff0ebbc1cf1 /eclass | |
parent | Marked ~hppa (bug #408119). (diff) | |
download | gentoo-2-7ac6bf78cefcf41a10ffac93cd19b227ab495512.tar.gz gentoo-2-7ac6bf78cefcf41a10ffac93cd19b227ab495512.tar.bz2 gentoo-2-7ac6bf78cefcf41a10ffac93cd19b227ab495512.zip |
also rename gcov for people in the gcc-bin dir
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3df8ee841423..8989334f39a1 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.529 2012/03/10 21:21:30 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.530 2012/03/14 20:46:35 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1500,7 +1500,9 @@ toolchain_src_install() { # These should be symlinks dodir /usr/bin cd "${D}"${BINPATH} - for x in cpp gcc g++ c++ g77 gcj gcjh gfortran gccgo ; do + # Ugh: we really need to auto-detect this list. + # It's constantly out of date. + for x in cpp gcc g++ c++ gcov g77 gcj gcjh gfortran gccgo ; do # For some reason, g77 gets made instead of ${CTARGET}-g77... # this should take care of that [[ -f ${x} ]] && mv ${x} ${CTARGET}-${x} |