diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-03-24 21:31:26 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-03-24 21:31:26 +0000 |
commit | 94c634a107042e2b31a3b1b1ecff9298f43c880a (patch) | |
tree | d969319dc39448f4e41d52eb4d479f50e4fa83c8 /sys-devel/gcc/gcc-3.2.2.ebuild | |
parent | form fixes (diff) | |
download | gentoo-2-94c634a107042e2b31a3b1b1ecff9298f43c880a.tar.gz gentoo-2-94c634a107042e2b31a3b1b1ecff9298f43c880a.tar.bz2 gentoo-2-94c634a107042e2b31a3b1b1ecff9298f43c880a.zip |
Try to fix corner cases where we get libstdc++.so not found problems
Diffstat (limited to 'sys-devel/gcc/gcc-3.2.2.ebuild')
-rw-r--r-- | sys-devel/gcc/gcc-3.2.2.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys-devel/gcc/gcc-3.2.2.ebuild b/sys-devel/gcc/gcc-3.2.2.ebuild index dce442420102..d2ea4230803b 100644 --- a/sys-devel/gcc/gcc-3.2.2.ebuild +++ b/sys-devel/gcc/gcc-3.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2.ebuild,v 1.13 2003/03/24 19:49:06 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.2.2.ebuild,v 1.14 2003/03/24 21:31:26 azarah Exp $ IUSE="static nls bootstrap java build" @@ -502,6 +502,11 @@ pkg_preinst() { then chk_gcc_version fi + + # Make again sure that the linker "should" be able to locate + # libstdc++.so ... + export LD_LIBRARY_PATH="${LIBPATH}:${LD_LIBRARY_PATH}" + ${ROOT}/sbin/ldconfig } pkg_postinst() { |