diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-05-26 07:18:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-05-26 07:18:33 +0000 |
commit | 760ed70f4460c7e72139fe00db67a3d5be3e6998 (patch) | |
tree | 2932c4ab4b2cc52ade1ed06839775c028aed9c62 /eclass | |
parent | curl is also needed for USE=dedicated (bug #270048) (diff) | |
download | gentoo-2-760ed70f4460c7e72139fe00db67a3d5be3e6998.tar.gz gentoo-2-760ed70f4460c7e72139fe00db67a3d5be3e6998.tar.bz2 gentoo-2-760ed70f4460c7e72139fe00db67a3d5be3e6998.zip |
fix another think-o in append-flags unification #271141 by Sebastian Lechte
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 64b94c7d8a26..130537f3b965 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.137 2009/05/24 00:33:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.138 2009/05/26 07:18:33 vapier Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -182,7 +182,7 @@ append-lfs-flags() { append-flags() { [[ -z $* ]] && return 0 append-cflags "$@" - append-cppflags "$@" + append-cxxflags "$@" append-fflags "$@" return 0 } |