diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-20 01:11:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-20 01:11:54 +0000 |
commit | c8a76f32e3148a7408cf0bc57c59448bec647314 (patch) | |
tree | 6fec96a4c71348130e9f836704a19b0bb0295b2d | |
parent | Banshee plugins are in so i added to the previous p.mask. (diff) | |
download | gentoo-2-c8a76f32e3148a7408cf0bc57c59448bec647314.tar.gz gentoo-2-c8a76f32e3148a7408cf0bc57c59448bec647314.tar.bz2 gentoo-2-c8a76f32e3148a7408cf0bc57c59448bec647314.zip |
install libiberty.h all the time as pointed out by kanaka
-rw-r--r-- | eclass/toolchain-binutils.eclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index 160b0fde9c8f..b35a22483d4e 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.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-binutils.eclass,v 1.65 2006/08/31 18:22:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.66 2006/09/20 01:11:54 vapier Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -256,10 +256,9 @@ toolchain-binutils_src_install() { mv "${D}"/usr/${CHOST}/${CTARGET}/lib/* "${D}"/${LIBPATH}/ rm -r "${D}"/usr/${CHOST}/{include,lib} fi - else - insinto ${INCPATH} - doins "${S}/include/libiberty.h" fi + insinto ${INCPATH} + doins "${S}/include/libiberty.h" if [[ -d ${D}/${LIBPATH}/lib ]] ; then mv "${D}"/${LIBPATH}/lib/* "${D}"/${LIBPATH}/ rm -r "${D}"/${LIBPATH}/lib |