diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-20 06:43:10 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-20 06:43:10 +0000 |
commit | 8f351bf5c5aaf462e06c1faf67731b17ad0e584c (patch) | |
tree | 6c24f8373b756b7c5dd2b65685660fa7029b5205 /eclass | |
parent | cleanups (diff) | |
download | historical-8f351bf5c5aaf462e06c1faf67731b17ad0e584c.tar.gz historical-8f351bf5c5aaf462e06c1faf67731b17ad0e584c.tar.bz2 historical-8f351bf5c5aaf462e06c1faf67731b17ad0e584c.zip |
closes bug #9337
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 5a4e5def3e28..4c07ea7c1681 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Bart Verwilst <verwilst@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.8 2002/10/13 01:01:58 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.9 2002/10/20 06:43:10 seemant Exp $ ECLASS=flag-o-matic INHERITED="$INHERITED $ECLASS" @@ -44,8 +44,8 @@ append-flags () { replace-flags () { - CFLAGS="${CFLAGS/${1}/${2}}" - CXXFLAGS="${CXXFLAGS/${1}/${2}}" + CFLAGS="${CFLAGS/${1}/${2} }" + CXXFLAGS="${CXXFLAGS/${1}/${2} }" } |