diff options
author | Travis Tilley <lv@gentoo.org> | 2004-04-26 19:40:03 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-04-26 19:40:03 +0000 |
commit | 5e9f3b699978702a32dcc92cdbb202969f2dcdcf (patch) | |
tree | 64cd60b819396ce3d10792b22dca7656c39eb884 /sys-devel | |
parent | Add die following econf for bug 48950 (Manifest recommit) (diff) | |
download | gentoo-2-5e9f3b699978702a32dcc92cdbb202969f2dcdcf.tar.gz gentoo-2-5e9f3b699978702a32dcc92cdbb202969f2dcdcf.tar.bz2 gentoo-2-5e9f3b699978702a32dcc92cdbb202969f2dcdcf.zip |
fix bug where the ebuild tries to nuke libiberty from outside the sandbox
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gcc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/gcc/gcc-3.4.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-devel/gcc/ChangeLog b/sys-devel/gcc/ChangeLog index 08586f2897c4..c8510b2505c1 100644 --- a/sys-devel/gcc/ChangeLog +++ b/sys-devel/gcc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/gcc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.218 2004/04/26 18:43:39 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.219 2004/04/26 19:40:03 lv Exp $ + + 26 Apr 2004; Travis Tilley <lv@gentoo.org> gcc-3.4.0.ebuild: + fix bug where the ebuild tries to nuke libiberty from outside the sandbox 26 Apr 2004; Travis Tilley <lv@gentoo.org> gcc-3.4.0.ebuild: change settings for mips again... arch set to mips3 and tune set to r4600 diff --git a/sys-devel/gcc/gcc-3.4.0.ebuild b/sys-devel/gcc/gcc-3.4.0.ebuild index c9715f9a0370..c84e6ec45ce8 100644 --- a/sys-devel/gcc/gcc-3.4.0.ebuild +++ b/sys-devel/gcc/gcc-3.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.4.0.ebuild,v 1.3 2004/04/26 18:43:39 lv Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-3.4.0.ebuild,v 1.4 2004/04/26 19:40:03 lv Exp $ IUSE="static nls bootstrap java build X multilib gcj hardened f77 objc uclibc" @@ -605,9 +605,9 @@ src_install() { then rm -f ${D}${LOC}/lib/libiberty.a fi - if [ -f "${LIBPATH}/libiberty.a" ] + if [ -f "${D}${LIBPATH}/libiberty.a" ] then - rm -f ${LIBPATH}/libiberty.a + rm -f ${D}${LIBPATH}/libiberty.a fi cd ${S} |