diff options
author | Travis Tilley <lv@gentoo.org> | 2004-09-08 23:07:04 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-09-08 23:07:04 +0000 |
commit | df15e4a2efa131e14befd2db56cc1599d3142933 (patch) | |
tree | 63a9e57390028cfceb69b4f4967da6716975da8b /sys-devel | |
parent | use debug support (not for vim-core), whitespace tidyup (diff) | |
download | gentoo-2-df15e4a2efa131e14befd2db56cc1599d3142933.tar.gz gentoo-2-df15e4a2efa131e14befd2db56cc1599d3142933.tar.bz2 gentoo-2-df15e4a2efa131e14befd2db56cc1599d3142933.zip |
small "libgcc_s on archs other than amd64" fix ^^;
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gcc/gcc-3.4.2.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys-devel/gcc/gcc-3.4.2.ebuild b/sys-devel/gcc/gcc-3.4.2.ebuild index f85da51eacc9..98fda399356b 100644 --- a/sys-devel/gcc/gcc-3.4.2.ebuild +++ b/sys-devel/gcc/gcc-3.4.2.ebuild @@ -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/sys-devel/gcc/gcc-3.4.2.ebuild,v 1.2 2004/09/08 21:09:19 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.4.2.ebuild,v 1.3 2004/09/08 23:07:04 lv Exp $ IUSE="static nls bootstrap build nomultilib gcj gtk f77 objc hardened uclibc n32 n64" @@ -503,6 +503,8 @@ src_install() { if [ -e ${D}/${LIBPATH}/libgcc_s.so ] ; then mkdir -p ${D}/$(get_libdir)/ mv ${D}/${LIBPATH}/libgcc_s* ${D}/$(get_libdir)/ + # we need a libgcc_s.so + dosym libgcc_s.so.1 /$(get_libdir)/libgcc_s.so add_version_to_shared ${D}/$(get_libdir)/ fi fi |