diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-02-04 22:57:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-02-04 22:57:28 +0000 |
commit | 78f0cd76f9d66c2a2a01f2f91bf8d833cb302579 (patch) | |
tree | 309b88f2c602e4ac2a02a70ee006d8cdb5ea7a58 /eclass | |
parent | Version bump, bug 79778. (diff) | |
download | gentoo-2-78f0cd76f9d66c2a2a01f2f91bf8d833cb302579.tar.gz gentoo-2-78f0cd76f9d66c2a2a01f2f91bf8d833cb302579.tar.bz2 gentoo-2-78f0cd76f9d66c2a2a01f2f91bf8d833cb302579.zip |
punt sandbox while running tests, dont bother with filter-flags since strip-flags handles it (#80774), and add a few comments
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index 3badcba4b595..6457cfcc9d14 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -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/eclass/toolchain-binutils.eclass,v 1.23 2005/01/20 02:35:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.24 2005/02/04 22:57:28 vapier Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -76,11 +76,12 @@ apply_binutils_updates() { gnuconfig_update elibtoolize --portage --no-uclibc + # make sure we filter $LINGUAS so that only ones that + # actually work with all the subdirs make it through strip-linguas -i */po } toolchain-binutils_src_compile() { - filter-flags -fomit-frame-pointer -fssa #6730 strip-flags && replace-flags -O3 -O2 #47581 cd "${MY_BUILDDIR}" @@ -123,6 +124,9 @@ toolchain-binutils_src_compile() { } toolchain-binutils_src_test() { + # sandbox + toolchain tests == angry tests + unset LD_PRELOAD + cd "${MY_BUILDDIR}" make check || die "check failed :(" } |