diff options
author | Ned Ludd <solar@gentoo.org> | 2006-06-30 03:37:53 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2006-06-30 03:37:53 +0000 |
commit | c8805da9b62b4f14c898f2200b5faef6a49308b3 (patch) | |
tree | 420236b7e083422b2f73a7462c99b7c473954398 /eclass | |
parent | Moved libXNVCtrl.a to my devspace (diff) | |
download | gentoo-2-c8805da9b62b4f14c898f2200b5faef6a49308b3.tar.gz gentoo-2-c8805da9b62b4f14c898f2200b5faef6a49308b3.tar.bz2 gentoo-2-c8805da9b62b4f14c898f2200b5faef6a49308b3.zip |
- we no longer need to die on hardened toolchains as of binutils-2.16-r3
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/x-modular.eclass | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 6fff13164db2..1317ea8b1af8 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.61 2006/06/28 02:20:31 joshuabaergen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.62 2006/06/30 03:37:53 solar Exp $ # # Author: Donnie Berkholz <spyderous@gentoo.org> # @@ -171,12 +171,7 @@ RDEPEND="${RDEPEND} x-modular_specs_check() { if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then - if gcc-specs-now; then - msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." - eerror "$msg" - die "$msg" - fi - + append-ldflags -Wl,-z,lazy # (#116698) breaks loading filter-ldflags -Wl,-z,now fi |