diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-05-24 00:33:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-05-24 00:33:33 +0000 |
commit | 63523d8877fe9870e97cc70b6f3efe35d6e30307 (patch) | |
tree | e65a7736071b25c1152f8d99b3fb950d0a8ccd91 /eclass | |
parent | Version bump. (diff) | |
download | historical-63523d8877fe9870e97cc70b6f3efe35d6e30307.tar.gz historical-63523d8877fe9870e97cc70b6f3efe35d6e30307.tar.bz2 historical-63523d8877fe9870e97cc70b6f3efe35d6e30307.zip |
typo fix: cpp->c for append-cflags
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 1ef79a64c83c..64b94c7d8a26 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.136 2009/05/23 23:12:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.137 2009/05/24 00:33:33 mr_bones_ Exp $ # @ECLASS: flag-o-matic.eclass # @MAINTAINER: @@ -140,7 +140,7 @@ append-cppflags() { # @USAGE: <flags> # @DESCRIPTION: # Add extra <flags> to the current CFLAGS. -append-cppflags() { +append-cflags() { [[ -z $* ]] && return 0 export CFLAGS="${CFLAGS} $*" return 0 |