summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-06-19 13:23:41 +0000
committerMike Frysinger <vapier@gentoo.org>2003-06-19 13:23:41 +0000
commitbe20850b6d8c05d44afd1318e1a1b9e8f5ebd3f3 (patch)
treea929b5f30c8cc5c017765add2f91039934927c0f /eclass/flag-o-matic.eclass
parentquick fix to enable successful compile on >=gcc3x systems (diff)
downloadgentoo-2-be20850b6d8c05d44afd1318e1a1b9e8f5ebd3f3.tar.gz
gentoo-2-be20850b6d8c05d44afd1318e1a1b9e8f5ebd3f3.tar.bz2
gentoo-2-be20850b6d8c05d44afd1318e1a1b9e8f5ebd3f3.zip
append-flags only appended 1 flag before ;)
Diffstat (limited to 'eclass/flag-o-matic.eclass')
-rw-r--r--eclass/flag-o-matic.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index 022e4eeb74bb..263974d0349b 100644
--- a/eclass/flag-o-matic.eclass
+++ b/eclass/flag-o-matic.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.18 2003/06/17 14:38:32 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.19 2003/06/19 13:23:41 vapier Exp $
#
# Author Bart Verwilst <verwilst@gentoo.org>
@@ -56,8 +56,8 @@ filter-flags() {
}
append-flags() {
- CFLAGS="${CFLAGS} $1"
- CXXFLAGS="${CXXFLAGS} $1"
+ CFLAGS="${CFLAGS} $@"
+ CXXFLAGS="${CXXFLAGS} $@"
}
replace-flags() {