diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2008-09-14 19:43:41 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2008-09-14 19:43:41 +0000 |
commit | a8535e415d09efe52e2f2c527c4b28acfe22f1c8 (patch) | |
tree | 1fc960e744c669017fd749f62c999ac944b6bae4 /eclass/flag-o-matic.eclass | |
parent | change patch to include my patch submitted (and included) in upstream's trunk... (diff) | |
download | gentoo-2-a8535e415d09efe52e2f2c527c4b28acfe22f1c8.tar.gz gentoo-2-a8535e415d09efe52e2f2c527c4b28acfe22f1c8.tar.bz2 gentoo-2-a8535e415d09efe52e2f2c527c4b28acfe22f1c8.zip |
Also declare new_FFLAGS and new_FCFLAGS as arrays in replace-flags(). Bug #234249.
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 9919f3ec1823..2b87dfec6a20 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 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.124 2008/07/03 05:30:54 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.125 2008/09/14 19:43:41 dirtyepic Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -175,7 +175,7 @@ replace-flags() { && die "replace-flags takes 2 arguments, not $#" local f fset - declare -a new_CFLAGS new_CXXFLAGS + declare -a new_CFLAGS new_CXXFLAGS new_FFLAGS new_FCFLAGS for fset in CFLAGS CXXFLAGS FFLAGS FCFLAGS; do # Looping over the flags instead of using a global |