diff options
author | Matt Turner <mattst88@gentoo.org> | 2011-08-22 23:03:16 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2011-08-22 23:03:16 +0000 |
commit | d8e16dc61e53887a7751aae5a84fa4007d202b42 (patch) | |
tree | 8e9f5a41135940bceeaf7ab518fc56d340c8c852 /eclass | |
parent | Version bump, fixes bug 380285. (diff) | |
download | gentoo-2-d8e16dc61e53887a7751aae5a84fa4007d202b42.tar.gz gentoo-2-d8e16dc61e53887a7751aae5a84fa4007d202b42.tar.bz2 gentoo-2-d8e16dc61e53887a7751aae5a84fa4007d202b42.zip |
Remove incorrect library path. Patch by Jonathan Callen <abcd@gentoo.org>. Bugs 289947 and 358149.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 6f895cfb3acb..cab37b40e172 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.463 2011/08/22 02:19:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.464 2011/08/22 23:03:16 mattst88 Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1966,8 +1966,7 @@ gcc_movelibs() { ${LIBPATH}/${OS_MULTIDIR} \ ${LIBPATH}/../${MULTIDIR} \ ${PREFIX}/lib/${OS_MULTIDIR} \ - ${PREFIX}/${CTARGET}/lib/${OS_MULTIDIR} \ - ${PREFIX}/lib/${MULTIDIR} + ${PREFIX}/${CTARGET}/lib/${OS_MULTIDIR} do removedirs="${removedirs} ${FROMDIR}" FROMDIR=${D}${FROMDIR} |