diff options
author | 2006-04-06 12:58:06 +0000 | |
---|---|---|
committer | 2006-04-06 12:58:06 +0000 | |
commit | bb73761d413657b13805308e6eed3c256bd87073 (patch) | |
tree | af2230e63fc1f0d1fb4e43c52ab3b0ebbebdaa3b /eclass | |
parent | Remove old version. Mark version 0.12 stable on x86. Version bump. (diff) | |
download | gentoo-2-bb73761d413657b13805308e6eed3c256bd87073.tar.gz gentoo-2-bb73761d413657b13805308e6eed3c256bd87073.tar.bz2 gentoo-2-bb73761d413657b13805308e6eed3c256bd87073.zip |
create CTARGET-cpp names as well
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3518562ba381..27589c6bcd98 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.260 2006/04/02 09:14:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.261 2006/04/06 12:58:06 vapier Exp $ HOMEPAGE="http://www.gnu.org/software/gcc/gcc.html" LICENSE="GPL-2 LGPL-2.1" @@ -1573,12 +1573,12 @@ gcc-compiler_src_install() { # These should be symlinks dodir /usr/bin cd "${D}"${BINPATH} - for x in gcc g++ c++ g77 gcj gcjh gfortran ; do + for x in cpp gcc g++ c++ g77 gcj gcjh gfortran ; do # For some reason, g77 gets made instead of ${CTARGET}-g77... # this should take care of that [[ -f ${x} ]] && mv ${x} ${CTARGET}-${x} - if [[ -f ${CTARGET}-${x} ]] && ! is_crosscompile; then + if [[ -f ${CTARGET}-${x} ]] && ! is_crosscompile ; then ln -sf ${CTARGET}-${x} ${x} # Create version-ed symlinks |