diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-03-24 02:46:12 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-03-24 02:46:12 +0000 |
commit | 995152d446f7afc817ca718a58fc8142c3dbdc26 (patch) | |
tree | 63e428ac589d587b13e288696e4b7fb1ac54ebe6 /eclass/mozconfig.eclass | |
parent | Bump to 1.0.2 (diff) | |
download | historical-995152d446f7afc817ca718a58fc8142c3dbdc26.tar.gz historical-995152d446f7afc817ca718a58fc8142c3dbdc26.tar.bz2 historical-995152d446f7afc817ca718a58fc8142c3dbdc26.zip |
filter-flags -fstack-protector #83511
Diffstat (limited to 'eclass/mozconfig.eclass')
-rw-r--r-- | eclass/mozconfig.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/mozconfig.eclass b/eclass/mozconfig.eclass index 7055dd319b19..e92c68582b80 100644 --- a/eclass/mozconfig.eclass +++ b/eclass/mozconfig.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/mozconfig.eclass,v 1.8 2005/03/23 20:52:18 brad Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig.eclass,v 1.9 2005/03/24 02:46:12 agriffis Exp $ # # mozconfig.eclass: the new mozilla.eclass @@ -102,6 +102,9 @@ mozconfig_init() { # -O -O1 and -O2 strip-flags + # -fstack-protector is in ALLOWED_FLAGS but breaks moz #83511 + filter-flags -fstack-protector + # Additional ARCH support case "${ARCH}" in alpha|amd64|ia64) |