diff options
author | Gordon Malm <gengor@gentoo.org> | 2009-01-08 08:12:55 +0000 |
---|---|---|
committer | Gordon Malm <gengor@gentoo.org> | 2009-01-08 08:12:55 +0000 |
commit | d39dd9aedbd3c3f9a6a3073a4c83e9a6c04afdb5 (patch) | |
tree | d61639a483bbab8c073f3a25100befead12858fb /eclass | |
parent | Remove unnecessary append-flags -fno-stack-protector{,-all} (diff) | |
download | gentoo-2-d39dd9aedbd3c3f9a6a3073a4c83e9a6c04afdb5.tar.gz gentoo-2-d39dd9aedbd3c3f9a6a3073a4c83e9a6c04afdb5.tar.bz2 gentoo-2-d39dd9aedbd3c3f9a6a3073a4c83e9a6c04afdb5.zip |
Fix typo, there is no gcc-specs-ssp-all function
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 204bc2827ab5..4ce8f8fc781f 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.129 2009/01/04 17:22:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.130 2009/01/08 08:12:55 gengor Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -558,7 +558,7 @@ has_ssp_all() { # note; this matches only -fstack-protector-all [[ ${CFLAGS/-fstack-protector-all} != ${CFLAGS} || \ -n $(echo | $(tc-getCC) ${CFLAGS} -E -dM - | grep __SSP_ALL__) ]] || \ - gcc-specs-ssp-all + gcc-specs-ssp-to-all } # @FUNCTION: has_ssp |