diff options
author | 2009-01-08 08:12:55 +0000 | |
---|---|---|
committer | 2009-01-08 08:12:55 +0000 | |
commit | 52b679ca8dbb9724145fdf5af802f2b00018932f (patch) | |
tree | adb8b384002c4ef2f3ab621388cfe7ba92842b6f /eclass/flag-o-matic.eclass | |
parent | Remove unnecessary append-flags -fno-stack-protector{,-all} (diff) | |
download | historical-52b679ca8dbb9724145fdf5af802f2b00018932f.tar.gz historical-52b679ca8dbb9724145fdf5af802f2b00018932f.tar.bz2 historical-52b679ca8dbb9724145fdf5af802f2b00018932f.zip |
Fix typo, there is no gcc-specs-ssp-all function
Diffstat (limited to 'eclass/flag-o-matic.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 |