diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-12 21:23:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-12 21:23:04 +0000 |
commit | 44e9de92908ddc5589f1259b87e8481eeed959e3 (patch) | |
tree | 73b635b8e1389965323e57b3bd27c3acbf4eab0d /eclass | |
parent | Clean up some trailing whitespace reported by repoman. (diff) | |
download | gentoo-2-44e9de92908ddc5589f1259b87e8481eeed959e3.tar.gz gentoo-2-44e9de92908ddc5589f1259b87e8481eeed959e3.tar.bz2 gentoo-2-44e9de92908ddc5589f1259b87e8481eeed959e3.zip |
install c98/c99 into /usr/bin
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3f6281438e96..904ebd98ebca 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.306 2006/09/05 22:45:12 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.307 2006/09/12 21:23:04 vapier Exp $ HOMEPAGE="http://gcc.gnu.org/" LICENSE="GPL-2 LGPL-2.1" @@ -885,10 +885,11 @@ gcc-compiler_pkg_postinst() { cp "${ROOT}/${DATAPATH}"/fixlafiles.awk "${ROOT}"/lib/rcscripts/awk/ || die "installing fixlafiles.awk" cp "${ROOT}/${DATAPATH}"/fix_libtool_files.sh "${ROOT}"/sbin/ || die "installing fix_libtool_files.sh" - # These don't seem to exist when using the -K option and a hardened compiler and probably other cases also. + # Since these aren't critical files and portage sucks with + # handling of binpkgs, don't require these to be found for x in "${ROOT}/${DATAPATH}"/c{89,99} ; do if [[ -e ${x} ]]; then - cp ${x} "${ROOT}"/usr/sbin/ || die "installing c89/c99" + cp ${x} "${ROOT}"/usr/bin/ || die "installing c89/c99" fi done fi |